mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 16:51:02 +00:00
1 line
11 KiB
Plaintext
1 line
11 KiB
Plaintext
{"dependencies":[{"name":"./AnimatedInterpolation","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":13,"column":0,"index":225},"end":{"line":13,"column":60,"index":285}}],"key":"rc+0kZbcFDfUhy6xWENBgDldync=","exportNames":["*"],"imports":1}},{"name":"./AnimatedNode","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":14,"column":0,"index":286},"end":{"line":14,"column":42,"index":328}}],"key":"3FW5DuEHaAfmgBjK581q2IBFvjo=","exportNames":["*"],"imports":1}},{"name":"./AnimatedValue","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":15,"column":0,"index":329},"end":{"line":15,"column":44,"index":373}}],"key":"MXjn1CQaLNtMiiooxlb5qObVfR0=","exportNames":["*"],"imports":1}},{"name":"./AnimatedWithChildren","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":16,"column":0,"index":374},"end":{"line":16,"column":58,"index":432}}],"key":"IUkIH5MYbr+OqFsp9MMa/cV/D0g=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n /**\n * Copyright (c) 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 * @format\n */\n\n 'use strict';\n\n Object.defineProperty(exports, '__esModule', {\n value: true\n });\n function _interopDefault(e) {\n return e && e.__esModule ? e : {\n default: e\n };\n }\n Object.defineProperty(exports, \"default\", {\n enumerable: true,\n get: function () {\n return _default;\n }\n });\n var _AnimatedInterpolation = require(_dependencyMap[0], \"./AnimatedInterpolation\");\n var AnimatedInterpolation = _interopDefault(_AnimatedInterpolation);\n var _AnimatedNode = require(_dependencyMap[1], \"./AnimatedNode\");\n var AnimatedNode = _interopDefault(_AnimatedNode);\n var _AnimatedValue = require(_dependencyMap[2], \"./AnimatedValue\");\n var AnimatedValue = _interopDefault(_AnimatedValue);\n var _AnimatedWithChildren = require(_dependencyMap[3], \"./AnimatedWithChildren\");\n var AnimatedWithChildren = _interopDefault(_AnimatedWithChildren);\n class AnimatedDivision extends AnimatedWithChildren.default {\n constructor(a, b) {\n super();\n this._warnedAboutDivideByZero = false;\n if (b === 0 || b instanceof AnimatedNode.default && b.__getValue() === 0) {\n console.error('Detected potential division by zero in AnimatedDivision');\n }\n this._a = typeof a === 'number' ? new AnimatedValue.default(a) : a;\n this._b = typeof b === 'number' ? new AnimatedValue.default(b) : b;\n }\n __makeNative(platformConfig) {\n this._a.__makeNative(platformConfig);\n this._b.__makeNative(platformConfig);\n super.__makeNative(platformConfig);\n }\n __getValue() {\n var a = this._a.__getValue();\n var b = this._b.__getValue();\n if (b === 0) {\n // Prevent spamming the console/LogBox\n if (!this._warnedAboutDivideByZero) {\n console.error('Detected division by zero in AnimatedDivision');\n this._warnedAboutDivideByZero = true;\n }\n // Passing infinity/NaN to Fabric will cause a native crash\n return 0;\n }\n this._warnedAboutDivideByZero = false;\n return a / b;\n }\n interpolate(config) {\n return new AnimatedInterpolation.default(this, config);\n }\n __attach() {\n this._a.__addChild(this);\n this._b.__addChild(this);\n }\n __detach() {\n this._a.__removeChild(this);\n this._b.__removeChild(this);\n super.__detach();\n }\n __getNativeConfig() {\n return {\n type: 'division',\n input: [this._a.__getNativeTag(), this._b.__getNativeTag()]\n };\n }\n }\n var _default = AnimatedDivision;\n});","lineCount":86,"map":[[2,2,1,0],[3,0,2,0],[4,0,3,0],[5,0,4,0],[6,0,5,0],[7,0,6,0],[8,0,7,0],[9,0,8,0],[10,0,9,0],[12,2,11,0],[12,14,11,12],[14,2,11,13,"Object"],[14,8,11,13],[14,9,11,13,"defineProperty"],[14,23,11,13],[14,24,11,13,"exports"],[14,31,11,13],[15,4,11,13,"value"],[15,9,11,13],[16,2,11,13],[17,2,11,13],[17,11,11,13,"_interopDefault"],[17,27,11,13,"e"],[17,28,11,13],[18,4,11,13],[18,11,11,13,"e"],[18,12,11,13],[18,16,11,13,"e"],[18,17,11,13],[18,18,11,13,"__esModule"],[18,28,11,13],[18,31,11,13,"e"],[18,32,11,13],[19,6,11,13,"default"],[19,13,11,13],[19,15,11,13,"e"],[20,4,11,13],[21,2,11,13],[22,2,66,0,"Object"],[22,8,66,0],[22,9,66,0,"defineProperty"],[22,23,66,0],[22,24,66,0,"exports"],[22,31,66,0],[23,4,66,0,"enumerable"],[23,14,66,0],[24,4,66,0,"get"],[24,7,66,0],[24,18,66,0,"get"],[24,19,66,0],[25,6,66,0],[25,13,66,0,"_default"],[25,21,66,0],[26,4,66,0],[27,2,66,0],[28,2,13,0],[28,6,13,0,"_AnimatedInterpolation"],[28,28,13,0],[28,31,13,0,"require"],[28,38,13,0],[28,39,13,0,"_dependencyMap"],[28,53,13,0],[29,2,13,0],[29,6,13,0,"AnimatedInterpolation"],[29,27,13,0],[29,30,13,0,"_interopDefault"],[29,45,13,0],[29,46,13,0,"_AnimatedInterpolation"],[29,68,13,0],[30,2,14,0],[30,6,14,0,"_AnimatedNode"],[30,19,14,0],[30,22,14,0,"require"],[30,29,14,0],[30,30,14,0,"_dependencyMap"],[30,44,14,0],[31,2,14,0],[31,6,14,0,"AnimatedNode"],[31,18,14,0],[31,21,14,0,"_interopDefault"],[31,36,14,0],[31,37,14,0,"_AnimatedNode"],[31,50,14,0],[32,2,15,0],[32,6,15,0,"_AnimatedValue"],[32,20,15,0],[32,23,15,0,"require"],[32,30,15,0],[32,31,15,0,"_dependencyMap"],[32,45,15,0],[33,2,15,0],[33,6,15,0,"AnimatedValue"],[33,19,15,0],[33,22,15,0,"_interopDefault"],[33,37,15,0],[33,38,15,0,"_AnimatedValue"],[33,52,15,0],[34,2,16,0],[34,6,16,0,"_AnimatedWithChildren"],[34,27,16,0],[34,30,16,0,"require"],[34,37,16,0],[34,38,16,0,"_dependencyMap"],[34,52,16,0],[35,2,16,0],[35,6,16,0,"AnimatedWithChildren"],[35,26,16,0],[35,29,16,0,"_interopDefault"],[35,44,16,0],[35,45,16,0,"_AnimatedWithChildren"],[35,66,16,0],[36,2,17,0],[36,8,17,6,"AnimatedDivision"],[36,24,17,22],[36,33,17,31,"AnimatedWithChildren"],[36,53,17,51],[36,54,17,51,"default"],[36,61,17,51],[36,62,17,52],[37,4,18,2,"constructor"],[37,15,18,13,"constructor"],[37,16,18,14,"a"],[37,17,18,15],[37,19,18,17,"b"],[37,20,18,18],[37,22,18,20],[38,6,19,4],[38,11,19,9],[38,12,19,10],[38,13,19,11],[39,6,20,4],[39,10,20,8],[39,11,20,9,"_warnedAboutDivideByZero"],[39,35,20,33],[39,38,20,36],[39,43,20,41],[40,6,21,4],[40,10,21,8,"b"],[40,11,21,9],[40,16,21,14],[40,17,21,15],[40,21,21,19,"b"],[40,22,21,20],[40,34,21,32,"AnimatedNode"],[40,46,21,44],[40,47,21,44,"default"],[40,54,21,44],[40,58,21,48,"b"],[40,59,21,49],[40,60,21,50,"__getValue"],[40,70,21,60],[40,71,21,61],[40,72,21,62],[40,77,21,67],[40,78,21,68],[40,80,21,70],[41,8,22,6,"console"],[41,15,22,13],[41,16,22,14,"error"],[41,21,22,19],[41,22,22,20],[41,79,22,77],[41,80,22,78],[42,6,23,4],[43,6,24,4],[43,10,24,8],[43,11,24,9,"_a"],[43,13,24,11],[43,16,24,14],[43,23,24,21,"a"],[43,24,24,22],[43,29,24,27],[43,37,24,35],[43,40,24,38],[43,44,24,42,"AnimatedValue"],[43,57,24,55],[43,58,24,55,"default"],[43,65,24,55],[43,66,24,56,"a"],[43,67,24,57],[43,68,24,58],[43,71,24,61,"a"],[43,72,24,62],[44,6,25,4],[44,10,25,8],[44,11,25,9,"_b"],[44,13,25,11],[44,16,25,14],[44,23,25,21,"b"],[44,24,25,22],[44,29,25,27],[44,37,25,35],[44,40,25,38],[44,44,25,42,"AnimatedValue"],[44,57,25,55],[44,58,25,55,"default"],[44,65,25,55],[44,66,25,56,"b"],[44,67,25,57],[44,68,25,58],[44,71,25,61,"b"],[44,72,25,62],[45,4,26,2],[46,4,27,2,"__makeNative"],[46,16,27,14,"__makeNative"],[46,17,27,15,"platformConfig"],[46,31,27,29],[46,33,27,31],[47,6,28,4],[47,10,28,8],[47,11,28,9,"_a"],[47,13,28,11],[47,14,28,12,"__makeNative"],[47,26,28,24],[47,27,28,25,"platformConfig"],[47,41,28,39],[47,42,28,40],[48,6,29,4],[48,10,29,8],[48,11,29,9,"_b"],[48,13,29,11],[48,14,29,12,"__makeNative"],[48,26,29,24],[48,27,29,25,"platformConfig"],[48,41,29,39],[48,42,29,40],[49,6,30,4],[49,11,30,9],[49,12,30,10,"__makeNative"],[49,24,30,22],[49,25,30,23,"platformConfig"],[49,39,30,37],[49,40,30,38],[50,4,31,2],[51,4,32,2,"__getValue"],[51,14,32,12,"__getValue"],[51,15,32,12],[51,17,32,15],[52,6,33,4],[52,10,33,8,"a"],[52,11,33,9],[52,14,33,12],[52,18,33,16],[52,19,33,17,"_a"],[52,21,33,19],[52,22,33,20,"__getValue"],[52,32,33,30],[52,33,33,31],[52,34,33,32],[53,6,34,4],[53,10,34,8,"b"],[53,11,34,9],[53,14,34,12],[53,18,34,16],[53,19,34,17,"_b"],[53,21,34,19],[53,22,34,20,"__getValue"],[53,32,34,30],[53,33,34,31],[53,34,34,32],[54,6,35,4],[54,10,35,8,"b"],[54,11,35,9],[54,16,35,14],[54,17,35,15],[54,19,35,17],[55,8,36,6],[56,8,37,6],[56,12,37,10],[56,13,37,11],[56,17,37,15],[56,18,37,16,"_warnedAboutDivideByZero"],[56,42,37,40],[56,44,37,42],[57,10,38,8,"console"],[57,17,38,15],[57,18,38,16,"error"],[57,23,38,21],[57,24,38,22],[57,71,38,69],[57,72,38,70],[58,10,39,8],[58,14,39,12],[58,15,39,13,"_warnedAboutDivideByZero"],[58,39,39,37],[58,42,39,40],[58,46,39,44],[59,8,40,6],[60,8,41,6],[61,8,42,6],[61,15,42,13],[61,16,42,14],[62,6,43,4],[63,6,44,4],[63,10,44,8],[63,11,44,9,"_warnedAboutDivideByZero"],[63,35,44,33],[63,38,44,36],[63,43,44,41],[64,6,45,4],[64,13,45,11,"a"],[64,14,45,12],[64,17,45,15,"b"],[64,18,45,16],[65,4,46,2],[66,4,47,2,"interpolate"],[66,15,47,13,"interpolate"],[66,16,47,14,"config"],[66,22,47,20],[66,24,47,22],[67,6,48,4],[67,13,48,11],[67,17,48,15,"AnimatedInterpolation"],[67,38,48,36],[67,39,48,36,"default"],[67,46,48,36],[67,47,48,37],[67,51,48,41],[67,53,48,43,"config"],[67,59,48,49],[67,60,48,50],[68,4,49,2],[69,4,50,2,"__attach"],[69,12,50,10,"__attach"],[69,13,50,10],[69,15,50,13],[70,6,51,4],[70,10,51,8],[70,11,51,9,"_a"],[70,13,51,11],[70,14,51,12,"__addChild"],[70,24,51,22],[70,25,51,23],[70,29,51,27],[70,30,51,28],[71,6,52,4],[71,10,52,8],[71,11,52,9,"_b"],[71,13,52,11],[71,14,52,12,"__addChild"],[71,24,52,22],[71,25,52,23],[71,29,52,27],[71,30,52,28],[72,4,53,2],[73,4,54,2,"__detach"],[73,12,54,10,"__detach"],[73,13,54,10],[73,15,54,13],[74,6,55,4],[74,10,55,8],[74,11,55,9,"_a"],[74,13,55,11],[74,14,55,12,"__removeChild"],[74,27,55,25],[74,28,55,26],[74,32,55,30],[74,33,55,31],[75,6,56,4],[75,10,56,8],[75,11,56,9,"_b"],[75,13,56,11],[75,14,56,12,"__removeChild"],[75,27,56,25],[75,28,56,26],[75,32,56,30],[75,33,56,31],[76,6,57,4],[76,11,57,9],[76,12,57,10,"__detach"],[76,20,57,18],[76,21,57,19],[76,22,57,20],[77,4,58,2],[78,4,59,2,"__getNativeConfig"],[78,21,59,19,"__getNativeConfig"],[78,22,59,19],[78,24,59,22],[79,6,60,4],[79,13,60,11],[80,8,61,6,"type"],[80,12,61,10],[80,14,61,12],[80,24,61,22],[81,8,62,6,"input"],[81,13,62,11],[81,15,62,13],[81,16,62,14],[81,20,62,18],[81,21,62,19,"_a"],[81,23,62,21],[81,24,62,22,"__getNativeTag"],[81,38,62,36],[81,39,62,37],[81,40,62,38],[81,42,62,40],[81,46,62,44],[81,47,62,45,"_b"],[81,49,62,47],[81,50,62,48,"__getNativeTag"],[81,64,62,62],[81,65,62,63],[81,66,62,64],[82,6,63,4],[82,7,63,5],[83,4,64,2],[84,2,65,0],[85,2,66,0],[85,6,66,0,"_default"],[85,14,66,0],[85,17,66,15,"AnimatedDivision"],[85,33,66,31],[86,0,66,32],[86,3]],"functionMap":{"names":["<global>","AnimatedDivision","constructor","__makeNative","__getValue","interpolate","__attach","__detach","__getNativeConfig"],"mappings":"AAA;ACgB;ECC;GDQ;EEC;GFI;EGC;GHc;EIC;GJE;EKC;GLG;EMC;GNI;EOC;GPK;CDC"},"hasCjsExports":false},"type":"js/module"}]} |