mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 01:51:03 +00:00
1 line
9.2 KiB
Plaintext
1 line
9.2 KiB
Plaintext
{"dependencies":[{"name":"whatwg-url-without-unicode","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":12,"column":0,"index":408},"end":{"line":12,"column":66,"index":474}}],"key":"A+MCbLw/itdoI4zIyjSMR6P1C2g=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n Object.defineProperty(exports, '__esModule', {\n value: true\n });\n Object.defineProperty(exports, \"URL\", {\n enumerable: true,\n get: function () {\n return _whatwgUrlWithoutUnicode.URL;\n }\n });\n Object.defineProperty(exports, \"URLSearchParams\", {\n enumerable: true,\n get: function () {\n return _whatwgUrlWithoutUnicode.URLSearchParams;\n }\n });\n var _whatwgUrlWithoutUnicode = require(_dependencyMap[0], \"whatwg-url-without-unicode\");\n /**\n * Copyright © 2023-present 650 Industries, Inc. (aka Expo)\n * Copyright © Meta Platforms, Inc. and affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n // This file should not import `react-native` in order to remain self-contained.\n\n /// <reference path=\"../ts-declarations/whatwg-url-without-unicode.d.ts\" />\n\n // TODO(@kitten): Provide BlobModule types matching native module\n\n var isSetup = false;\n var BLOB_URL_PREFIX = null;\n function getBlobUrlPrefix() {\n if (isSetup) return BLOB_URL_PREFIX;\n isSetup = true;\n // if iOS: let BLOB_URL_PREFIX = 'blob:'\n\n // Pull the blob module without importing React Native.\n var BlobModule = globalThis.RN$Bridgeless !== true ?\n // Legacy RN implementation\n globalThis.nativeModuleProxy['BlobModule'] :\n // Newer RN implementation\n globalThis.__turboModuleProxy('BlobModule');\n var constants = 'BLOB_URI_SCHEME' in BlobModule ? BlobModule : BlobModule.getConstants();\n if (constants && typeof constants.BLOB_URI_SCHEME === 'string') {\n BLOB_URL_PREFIX = encodeURIComponent(constants.BLOB_URI_SCHEME) + ':';\n if (typeof constants.BLOB_URI_HOST === 'string') {\n BLOB_URL_PREFIX += `//${encodeURIComponent(constants.BLOB_URI_HOST)}/`;\n }\n }\n return BLOB_URL_PREFIX;\n }\n /**\n * To allow Blobs be accessed via `content://` URIs,\n * you need to register `BlobProvider` as a ContentProvider in your app's `AndroidManifest.xml`:\n *\n * ```xml\n * <manifest>\n * <application>\n * <provider\n * android:name=\"com.facebook.react.modules.blob.BlobProvider\"\n * android:authorities=\"@string/blob_provider_authority\"\n * android:exported=\"false\"\n * />\n * </application>\n * </manifest>\n * ```\n * And then define the `blob_provider_authority` string in `res/values/strings.xml`.\n * Use a dotted name that's entirely unique to your app:\n *\n * ```xml\n * <resources>\n * <string name=\"blob_provider_authority\">your.app.package.blobs</string>\n * </resources>\n * ```\n */\n _whatwgUrlWithoutUnicode.URL.createObjectURL = function createObjectURL(blob) {\n if (getBlobUrlPrefix() == null) {\n throw new Error('Cannot create URL for blob');\n }\n return `${getBlobUrlPrefix()}${encodeURIComponent(blob.data.blobId)}?offset=${encodeURIComponent(blob.data.offset)}&size=${encodeURIComponent(blob.size)}`;\n };\n _whatwgUrlWithoutUnicode.URL.revokeObjectURL = function revokeObjectURL(_url) {\n // Do nothing.\n };\n _whatwgUrlWithoutUnicode.URL.canParse = function canParse(url, base) {\n try {\n // eslint-disable-next-line no-new\n new _whatwgUrlWithoutUnicode.URL(url, base);\n return true;\n } catch {\n return false;\n }\n };\n});","lineCount":98,"map":[[7,2,117,0,"Object"],[7,8,117,0],[7,9,117,0,"defineProperty"],[7,23,117,0],[7,24,117,0,"exports"],[7,31,117,0],[8,4,117,0,"enumerable"],[8,14,117,0],[9,4,117,0,"get"],[9,7,117,0],[9,18,117,0,"get"],[9,19,117,0],[10,6,117,0],[10,13,117,9,"URL"],[10,37,117,12],[10,38,117,12,"URL"],[10,41,117,12],[11,4,117,12],[12,2,117,12],[13,2,117,0,"Object"],[13,8,117,0],[13,9,117,0,"defineProperty"],[13,23,117,0],[13,24,117,0,"exports"],[13,31,117,0],[14,4,117,0,"enumerable"],[14,14,117,0],[15,4,117,0,"get"],[15,7,117,0],[15,18,117,0,"get"],[15,19,117,0],[16,6,117,0],[16,13,117,14,"URLSearchParams"],[16,37,117,29],[16,38,117,29,"URLSearchParams"],[16,53,117,29],[17,4,117,29],[18,2,117,29],[19,2,12,0],[19,6,12,0,"_whatwgUrlWithoutUnicode"],[19,30,12,0],[19,33,12,0,"require"],[19,40,12,0],[19,41,12,0,"_dependencyMap"],[19,55,12,0],[20,2,1,0],[21,0,2,0],[22,0,3,0],[23,0,4,0],[24,0,5,0],[25,0,6,0],[26,0,7,0],[28,2,9,0],[30,2,11,0],[32,2,20,0],[34,2,32,0],[34,6,32,4,"isSetup"],[34,13,32,11],[34,16,32,14],[34,21,32,19],[35,2,33,0],[35,6,33,4,"BLOB_URL_PREFIX"],[35,21,33,34],[35,24,33,37],[35,28,33,41],[36,2,35,0],[36,11,35,9,"getBlobUrlPrefix"],[36,27,35,25,"getBlobUrlPrefix"],[36,28,35,25],[36,30,35,28],[37,4,36,2],[37,8,36,6,"isSetup"],[37,15,36,13],[37,17,36,15],[37,24,36,22,"BLOB_URL_PREFIX"],[37,39,36,37],[38,4,37,2,"isSetup"],[38,11,37,9],[38,14,37,12],[38,18,37,16],[39,4,38,2],[41,4,40,2],[42,4,41,2],[42,8,41,8,"BlobModule"],[42,18,41,18],[42,21,42,4,"globalThis"],[42,31,42,14],[42,32,42,15,"RN$Bridgeless"],[42,45,42,28],[42,50,42,33],[42,54,42,37],[43,4,43,8],[44,4,44,9,"globalThis"],[44,14,44,19],[44,15,44,20,"nativeModuleProxy"],[44,32,44,37],[44,33,44,38],[44,45,44,50],[44,46,44,51],[45,4,45,8],[46,4,46,9,"globalThis"],[46,14,46,19],[46,15,46,20,"__turboModuleProxy"],[46,33,46,38],[46,34,46,39],[46,46,46,51],[46,47,46,72],[47,4,48,2],[47,8,48,8,"constants"],[47,17,48,17],[47,20,48,20],[47,37,48,37],[47,41,48,41,"BlobModule"],[47,51,48,51],[47,54,48,54,"BlobModule"],[47,64,48,64],[47,67,48,67,"BlobModule"],[47,77,48,77],[47,78,48,78,"getConstants"],[47,90,48,90],[47,91,48,91],[47,92,48,92],[48,4,50,2],[48,8,50,6,"constants"],[48,17,50,15],[48,21,50,19],[48,28,50,26,"constants"],[48,37,50,35],[48,38,50,36,"BLOB_URI_SCHEME"],[48,53,50,51],[48,58,50,56],[48,66,50,64],[48,68,50,66],[49,6,51,4,"BLOB_URL_PREFIX"],[49,21,51,19],[49,24,51,22,"encodeURIComponent"],[49,42,51,40],[49,43,51,41,"constants"],[49,52,51,50],[49,53,51,51,"BLOB_URI_SCHEME"],[49,68,51,66],[49,69,51,67],[49,72,51,70],[49,75,51,73],[50,6,52,4],[50,10,52,8],[50,17,52,15,"constants"],[50,26,52,24],[50,27,52,25,"BLOB_URI_HOST"],[50,40,52,38],[50,45,52,43],[50,53,52,51],[50,55,52,53],[51,8,53,6,"BLOB_URL_PREFIX"],[51,23,53,21],[51,27,53,25],[51,32,53,30,"encodeURIComponent"],[51,50,53,48],[51,51,53,49,"constants"],[51,60,53,58],[51,61,53,59,"BLOB_URI_HOST"],[51,74,53,72],[51,75,53,73],[51,78,53,76],[52,6,54,4],[53,4,55,2],[54,4,56,2],[54,11,56,9,"BLOB_URL_PREFIX"],[54,26,56,24],[55,2,57,0],[56,2,70,0],[57,0,71,0],[58,0,72,0],[59,0,73,0],[60,0,74,0],[61,0,75,0],[62,0,76,0],[63,0,77,0],[64,0,78,0],[65,0,79,0],[66,0,80,0],[67,0,81,0],[68,0,82,0],[69,0,83,0],[70,0,84,0],[71,0,85,0],[72,0,86,0],[73,0,87,0],[74,0,88,0],[75,0,89,0],[76,0,90,0],[77,0,91,0],[78,0,92,0],[79,0,93,0],[80,2,94,0,"URL"],[80,26,94,3],[80,27,94,3,"URL"],[80,30,94,3],[80,31,94,4,"createObjectURL"],[80,46,94,19],[80,49,94,22],[80,58,94,31,"createObjectURL"],[80,73,94,46,"createObjectURL"],[80,74,94,47,"blob"],[80,78,94,51],[80,80,94,53],[81,4,95,2],[81,8,95,6,"getBlobUrlPrefix"],[81,24,95,22],[81,25,95,23],[81,26,95,24],[81,30,95,28],[81,34,95,32],[81,36,95,34],[82,6,96,4],[82,12,96,10],[82,16,96,14,"Error"],[82,21,96,19],[82,22,96,20],[82,50,96,48],[82,51,96,49],[83,4,97,2],[84,4,98,2],[84,11,98,9],[84,14,98,12,"getBlobUrlPrefix"],[84,30,98,28],[84,31,98,29],[84,32,98,30],[84,35,98,33,"encodeURIComponent"],[84,53,98,51],[84,54,98,52,"blob"],[84,58,98,56],[84,59,98,57,"data"],[84,63,98,61],[84,64,98,63,"blobId"],[84,70,98,69],[84,71,98,70],[84,82,98,81,"encodeURIComponent"],[84,100,98,99],[84,101,99,4,"blob"],[84,105,99,8],[84,106,99,9,"data"],[84,110,99,13],[84,111,99,15,"offset"],[84,117,100,2],[84,118,100,3],[84,127,100,12,"encodeURIComponent"],[84,145,100,30],[84,146,100,31,"blob"],[84,150,100,35],[84,151,100,36,"size"],[84,155,100,40],[84,156,100,41],[84,158,100,43],[85,2,101,0],[85,3,101,1],[86,2,103,0,"URL"],[86,26,103,3],[86,27,103,3,"URL"],[86,30,103,3],[86,31,103,4,"revokeObjectURL"],[86,46,103,19],[86,49,103,22],[86,58,103,31,"revokeObjectURL"],[86,73,103,46,"revokeObjectURL"],[86,74,103,47,"_url"],[86,78,103,51],[86,80,103,53],[87,4,104,2],[88,2,104,2],[88,3,105,1],[89,2,107,0,"URL"],[89,26,107,3],[89,27,107,3,"URL"],[89,30,107,3],[89,31,107,4,"canParse"],[89,39,107,12],[89,42,107,15],[89,51,107,24,"canParse"],[89,59,107,32,"canParse"],[89,60,107,33,"url"],[89,63,107,44],[89,65,107,46,"base"],[89,69,107,59],[89,71,107,70],[90,4,108,2],[90,8,108,6],[91,6,109,4],[92,6,110,4],[92,10,110,8,"URL"],[92,34,110,11],[92,35,110,11,"URL"],[92,38,110,11],[92,39,110,12,"url"],[92,42,110,15],[92,44,110,17,"base"],[92,48,110,21],[92,49,110,22],[93,6,111,4],[93,13,111,11],[93,17,111,15],[94,4,112,2],[94,5,112,3],[94,6,112,4],[94,12,112,10],[95,6,113,4],[95,13,113,11],[95,18,113,16],[96,4,114,2],[97,2,115,0],[97,3,115,1],[98,0,115,2],[98,3]],"functionMap":{"names":["<global>","getBlobUrlPrefix","createObjectURL","revokeObjectURL","canParse"],"mappings":"AAA;ACkC;CDsB;sBEqC;CFO;sBGE;CHE;eIE;CJQ"},"hasCjsExports":false},"type":"js/module"}]} |