mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 13:31:00 +00:00
1 line
20 KiB
Plaintext
1 line
20 KiB
Plaintext
{"dependencies":[{"name":"../NativeAnimatedHelper","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":13,"column":0,"index":225},"end":{"line":13,"column":59,"index":284}}],"key":"7+Fs6fvkAbHB0IU2p+AMhuguGZA=","exportNames":["*"],"imports":1}},{"name":"fbjs/lib/invariant","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":15,"column":0,"index":335},"end":{"line":15,"column":43,"index":378}}],"key":"bGUa+dDG2WEhPiIlobT3urS95UE=","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 _NativeAnimatedHelper = require(_dependencyMap[0], \"../NativeAnimatedHelper\");\n var NativeAnimatedHelper = _interopDefault(_NativeAnimatedHelper);\n var _fbjsLibInvariant = require(_dependencyMap[1], \"fbjs/lib/invariant\");\n var invariant = _interopDefault(_fbjsLibInvariant);\n var NativeAnimatedAPI = NativeAnimatedHelper.default.API;\n var _uniqueId = 1;\n\n // Note(vjeux): this would be better as an interface but flow doesn't\n // support them yet\n class AnimatedNode {\n __attach() {}\n __detach() {\n if (this.__isNative && this.__nativeTag != null) {\n NativeAnimatedHelper.default.API.dropAnimatedNode(this.__nativeTag);\n this.__nativeTag = undefined;\n }\n }\n __getValue() {}\n __getAnimatedValue() {\n return this.__getValue();\n }\n __addChild(child) {}\n __removeChild(child) {}\n __getChildren() {\n return [];\n }\n\n /* Methods and props used by native Animated impl */\n\n constructor() {\n this._listeners = {};\n }\n __makeNative(platformConfig) {\n if (!this.__isNative) {\n throw new Error('This node cannot be made a \"native\" animated node');\n }\n this._platformConfig = platformConfig;\n if (this.hasListeners()) {\n this._startListeningToNativeValueUpdates();\n }\n }\n\n /**\n * Adds an asynchronous listener to the value so you can observe updates from\n * animations. This is useful because there is no way to\n * synchronously read the value because it might be driven natively.\n *\n * See https://reactnative.dev/docs/animatedvalue#addlistener\n */\n addListener(callback) {\n var id = String(_uniqueId++);\n this._listeners[id] = callback;\n if (this.__isNative) {\n this._startListeningToNativeValueUpdates();\n }\n return id;\n }\n\n /**\n * Unregister a listener. The `id` param shall match the identifier\n * previously returned by `addListener()`.\n *\n * See https://reactnative.dev/docs/animatedvalue#removelistener\n */\n removeListener(id) {\n delete this._listeners[id];\n if (this.__isNative && !this.hasListeners()) {\n this._stopListeningForNativeValueUpdates();\n }\n }\n\n /**\n * Remove all registered listeners.\n *\n * See https://reactnative.dev/docs/animatedvalue#removealllisteners\n */\n removeAllListeners() {\n this._listeners = {};\n if (this.__isNative) {\n this._stopListeningForNativeValueUpdates();\n }\n }\n hasListeners() {\n return !!Object.keys(this._listeners).length;\n }\n _startListeningToNativeValueUpdates() {\n if (this.__nativeAnimatedValueListener && !this.__shouldUpdateListenersForNewNativeTag) {\n return;\n }\n if (this.__shouldUpdateListenersForNewNativeTag) {\n this.__shouldUpdateListenersForNewNativeTag = false;\n this._stopListeningForNativeValueUpdates();\n }\n NativeAnimatedAPI.startListeningToAnimatedNodeValue(this.__getNativeTag());\n this.__nativeAnimatedValueListener = NativeAnimatedHelper.default.nativeEventEmitter.addListener('onAnimatedValueUpdate', data => {\n if (data.tag !== this.__getNativeTag()) {\n return;\n }\n this.__onAnimatedValueUpdateReceived(data.value);\n });\n }\n __onAnimatedValueUpdateReceived(value) {\n this.__callListeners(value);\n }\n __callListeners(value) {\n for (var _key in this._listeners) {\n this._listeners[_key]({\n value\n });\n }\n }\n _stopListeningForNativeValueUpdates() {\n if (!this.__nativeAnimatedValueListener) {\n return;\n }\n this.__nativeAnimatedValueListener.remove();\n this.__nativeAnimatedValueListener = null;\n NativeAnimatedAPI.stopListeningToAnimatedNodeValue(this.__getNativeTag());\n }\n __getNativeTag() {\n var _this$__nativeTag;\n NativeAnimatedHelper.default.assertNativeAnimatedModule();\n (0, invariant.default)(this.__isNative, 'Attempt to get native tag from node not marked as \"native\"');\n var nativeTag = (_this$__nativeTag = this.__nativeTag) !== null && _this$__nativeTag !== void 0 ? _this$__nativeTag : NativeAnimatedHelper.default.generateNewNodeTag();\n if (this.__nativeTag == null) {\n this.__nativeTag = nativeTag;\n var config = this.__getNativeConfig();\n if (this._platformConfig) {\n config.platformConfig = this._platformConfig;\n }\n NativeAnimatedHelper.default.API.createAnimatedNode(nativeTag, config);\n this.__shouldUpdateListenersForNewNativeTag = true;\n }\n return nativeTag;\n }\n __getNativeConfig() {\n throw new Error('This JS animated node type cannot be used as native animated node');\n }\n toJSON() {\n return this.__getValue();\n }\n __getPlatformConfig() {\n return this._platformConfig;\n }\n __setPlatformConfig(platformConfig) {\n this._platformConfig = platformConfig;\n }\n }\n var _default = AnimatedNode;\n});","lineCount":177,"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,159,0,"Object"],[22,8,159,0],[22,9,159,0,"defineProperty"],[22,23,159,0],[22,24,159,0,"exports"],[22,31,159,0],[23,4,159,0,"enumerable"],[23,14,159,0],[24,4,159,0,"get"],[24,7,159,0],[24,18,159,0,"get"],[24,19,159,0],[25,6,159,0],[25,13,159,0,"_default"],[25,21,159,0],[26,4,159,0],[27,2,159,0],[28,2,13,0],[28,6,13,0,"_NativeAnimatedHelper"],[28,27,13,0],[28,30,13,0,"require"],[28,37,13,0],[28,38,13,0,"_dependencyMap"],[28,52,13,0],[29,2,13,0],[29,6,13,0,"NativeAnimatedHelper"],[29,26,13,0],[29,29,13,0,"_interopDefault"],[29,44,13,0],[29,45,13,0,"_NativeAnimatedHelper"],[29,66,13,0],[30,2,15,0],[30,6,15,0,"_fbjsLibInvariant"],[30,23,15,0],[30,26,15,0,"require"],[30,33,15,0],[30,34,15,0,"_dependencyMap"],[30,48,15,0],[31,2,15,0],[31,6,15,0,"invariant"],[31,15,15,0],[31,18,15,0,"_interopDefault"],[31,33,15,0],[31,34,15,0,"_fbjsLibInvariant"],[31,51,15,0],[32,2,14,0],[32,6,14,4,"NativeAnimatedAPI"],[32,23,14,21],[32,26,14,24,"NativeAnimatedHelper"],[32,46,14,44],[32,47,14,44,"default"],[32,54,14,44],[32,55,14,45,"API"],[32,58,14,48],[33,2,16,0],[33,6,16,4,"_uniqueId"],[33,15,16,13],[33,18,16,16],[33,19,16,17],[35,2,18,0],[36,2,19,0],[37,2,20,0],[37,8,20,6,"AnimatedNode"],[37,20,20,18],[37,21,20,19],[38,4,21,2,"__attach"],[38,12,21,10,"__attach"],[38,13,21,10],[38,15,21,13],[38,16,21,14],[39,4,22,2,"__detach"],[39,12,22,10,"__detach"],[39,13,22,10],[39,15,22,13],[40,6,23,4],[40,10,23,8],[40,14,23,12],[40,15,23,13,"__isNative"],[40,25,23,23],[40,29,23,27],[40,33,23,31],[40,34,23,32,"__nativeTag"],[40,45,23,43],[40,49,23,47],[40,53,23,51],[40,55,23,53],[41,8,24,6,"NativeAnimatedHelper"],[41,28,24,26],[41,29,24,26,"default"],[41,36,24,26],[41,37,24,27,"API"],[41,40,24,30],[41,41,24,31,"dropAnimatedNode"],[41,57,24,47],[41,58,24,48],[41,62,24,52],[41,63,24,53,"__nativeTag"],[41,74,24,64],[41,75,24,65],[42,8,25,6],[42,12,25,10],[42,13,25,11,"__nativeTag"],[42,24,25,22],[42,27,25,25,"undefined"],[42,36,25,34],[43,6,26,4],[44,4,27,2],[45,4,28,2,"__getValue"],[45,14,28,12,"__getValue"],[45,15,28,12],[45,17,28,15],[45,18,28,16],[46,4,29,2,"__getAnimatedValue"],[46,22,29,20,"__getAnimatedValue"],[46,23,29,20],[46,25,29,23],[47,6,30,4],[47,13,30,11],[47,17,30,15],[47,18,30,16,"__getValue"],[47,28,30,26],[47,29,30,27],[47,30,30,28],[48,4,31,2],[49,4,32,2,"__addChild"],[49,14,32,12,"__addChild"],[49,15,32,13,"child"],[49,20,32,18],[49,22,32,20],[49,23,32,21],[50,4,33,2,"__removeChild"],[50,17,33,15,"__removeChild"],[50,18,33,16,"child"],[50,23,33,21],[50,25,33,23],[50,26,33,24],[51,4,34,2,"__getChildren"],[51,17,34,15,"__getChildren"],[51,18,34,15],[51,20,34,18],[52,6,35,4],[52,13,35,11],[52,15,35,13],[53,4,36,2],[55,4,38,2],[57,4,40,2,"constructor"],[57,15,40,13,"constructor"],[57,16,40,13],[57,18,40,16],[58,6,41,4],[58,10,41,8],[58,11,41,9,"_listeners"],[58,21,41,19],[58,24,41,22],[58,25,41,23],[58,26,41,24],[59,4,42,2],[60,4,43,2,"__makeNative"],[60,16,43,14,"__makeNative"],[60,17,43,15,"platformConfig"],[60,31,43,29],[60,33,43,31],[61,6,44,4],[61,10,44,8],[61,11,44,9],[61,15,44,13],[61,16,44,14,"__isNative"],[61,26,44,24],[61,28,44,26],[62,8,45,6],[62,14,45,12],[62,18,45,16,"Error"],[62,23,45,21],[62,24,45,22],[62,75,45,73],[62,76,45,74],[63,6,46,4],[64,6,47,4],[64,10,47,8],[64,11,47,9,"_platformConfig"],[64,26,47,24],[64,29,47,27,"platformConfig"],[64,43,47,41],[65,6,48,4],[65,10,48,8],[65,14,48,12],[65,15,48,13,"hasListeners"],[65,27,48,25],[65,28,48,26],[65,29,48,27],[65,31,48,29],[66,8,49,6],[66,12,49,10],[66,13,49,11,"_startListeningToNativeValueUpdates"],[66,48,49,46],[66,49,49,47],[66,50,49,48],[67,6,50,4],[68,4,51,2],[70,4,53,2],[71,0,54,0],[72,0,55,0],[73,0,56,0],[74,0,57,0],[75,0,58,0],[76,0,59,0],[77,4,60,2,"addListener"],[77,15,60,13,"addListener"],[77,16,60,14,"callback"],[77,24,60,22],[77,26,60,24],[78,6,61,4],[78,10,61,8,"id"],[78,12,61,10],[78,15,61,13,"String"],[78,21,61,19],[78,22,61,20,"_uniqueId"],[78,31,61,29],[78,33,61,31],[78,34,61,32],[79,6,62,4],[79,10,62,8],[79,11,62,9,"_listeners"],[79,21,62,19],[79,22,62,20,"id"],[79,24,62,22],[79,25,62,23],[79,28,62,26,"callback"],[79,36,62,34],[80,6,63,4],[80,10,63,8],[80,14,63,12],[80,15,63,13,"__isNative"],[80,25,63,23],[80,27,63,25],[81,8,64,6],[81,12,64,10],[81,13,64,11,"_startListeningToNativeValueUpdates"],[81,48,64,46],[81,49,64,47],[81,50,64,48],[82,6,65,4],[83,6,66,4],[83,13,66,11,"id"],[83,15,66,13],[84,4,67,2],[86,4,69,2],[87,0,70,0],[88,0,71,0],[89,0,72,0],[90,0,73,0],[91,0,74,0],[92,4,75,2,"removeListener"],[92,18,75,16,"removeListener"],[92,19,75,17,"id"],[92,21,75,19],[92,23,75,21],[93,6,76,4],[93,13,76,11],[93,17,76,15],[93,18,76,16,"_listeners"],[93,28,76,26],[93,29,76,27,"id"],[93,31,76,29],[93,32,76,30],[94,6,77,4],[94,10,77,8],[94,14,77,12],[94,15,77,13,"__isNative"],[94,25,77,23],[94,29,77,27],[94,30,77,28],[94,34,77,32],[94,35,77,33,"hasListeners"],[94,47,77,45],[94,48,77,46],[94,49,77,47],[94,51,77,49],[95,8,78,6],[95,12,78,10],[95,13,78,11,"_stopListeningForNativeValueUpdates"],[95,48,78,46],[95,49,78,47],[95,50,78,48],[96,6,79,4],[97,4,80,2],[99,4,82,2],[100,0,83,0],[101,0,84,0],[102,0,85,0],[103,0,86,0],[104,4,87,2,"removeAllListeners"],[104,22,87,20,"removeAllListeners"],[104,23,87,20],[104,25,87,23],[105,6,88,4],[105,10,88,8],[105,11,88,9,"_listeners"],[105,21,88,19],[105,24,88,22],[105,25,88,23],[105,26,88,24],[106,6,89,4],[106,10,89,8],[106,14,89,12],[106,15,89,13,"__isNative"],[106,25,89,23],[106,27,89,25],[107,8,90,6],[107,12,90,10],[107,13,90,11,"_stopListeningForNativeValueUpdates"],[107,48,90,46],[107,49,90,47],[107,50,90,48],[108,6,91,4],[109,4,92,2],[110,4,93,2,"hasListeners"],[110,16,93,14,"hasListeners"],[110,17,93,14],[110,19,93,17],[111,6,94,4],[111,13,94,11],[111,14,94,12],[111,15,94,13,"Object"],[111,21,94,19],[111,22,94,20,"keys"],[111,26,94,24],[111,27,94,25],[111,31,94,29],[111,32,94,30,"_listeners"],[111,42,94,40],[111,43,94,41],[111,44,94,42,"length"],[111,50,94,48],[112,4,95,2],[113,4,96,2,"_startListeningToNativeValueUpdates"],[113,39,96,37,"_startListeningToNativeValueUpdates"],[113,40,96,37],[113,42,96,40],[114,6,97,4],[114,10,97,8],[114,14,97,12],[114,15,97,13,"__nativeAnimatedValueListener"],[114,44,97,42],[114,48,97,46],[114,49,97,47],[114,53,97,51],[114,54,97,52,"__shouldUpdateListenersForNewNativeTag"],[114,92,97,90],[114,94,97,92],[115,8,98,6],[116,6,99,4],[117,6,100,4],[117,10,100,8],[117,14,100,12],[117,15,100,13,"__shouldUpdateListenersForNewNativeTag"],[117,53,100,51],[117,55,100,53],[118,8,101,6],[118,12,101,10],[118,13,101,11,"__shouldUpdateListenersForNewNativeTag"],[118,51,101,49],[118,54,101,52],[118,59,101,57],[119,8,102,6],[119,12,102,10],[119,13,102,11,"_stopListeningForNativeValueUpdates"],[119,48,102,46],[119,49,102,47],[119,50,102,48],[120,6,103,4],[121,6,104,4,"NativeAnimatedAPI"],[121,23,104,21],[121,24,104,22,"startListeningToAnimatedNodeValue"],[121,57,104,55],[121,58,104,56],[121,62,104,60],[121,63,104,61,"__getNativeTag"],[121,77,104,75],[121,78,104,76],[121,79,104,77],[121,80,104,78],[122,6,105,4],[122,10,105,8],[122,11,105,9,"__nativeAnimatedValueListener"],[122,40,105,38],[122,43,105,41,"NativeAnimatedHelper"],[122,63,105,61],[122,64,105,61,"default"],[122,71,105,61],[122,72,105,62,"nativeEventEmitter"],[122,90,105,80],[122,91,105,81,"addListener"],[122,102,105,92],[122,103,105,93],[122,126,105,116],[122,128,105,118,"data"],[122,132,105,122],[122,136,105,126],[123,8,106,6],[123,12,106,10,"data"],[123,16,106,14],[123,17,106,15,"tag"],[123,20,106,18],[123,25,106,23],[123,29,106,27],[123,30,106,28,"__getNativeTag"],[123,44,106,42],[123,45,106,43],[123,46,106,44],[123,48,106,46],[124,10,107,8],[125,8,108,6],[126,8,109,6],[126,12,109,10],[126,13,109,11,"__onAnimatedValueUpdateReceived"],[126,44,109,42],[126,45,109,43,"data"],[126,49,109,47],[126,50,109,48,"value"],[126,55,109,53],[126,56,109,54],[127,6,110,4],[127,7,110,5],[127,8,110,6],[128,4,111,2],[129,4,112,2,"__onAnimatedValueUpdateReceived"],[129,35,112,33,"__onAnimatedValueUpdateReceived"],[129,36,112,34,"value"],[129,41,112,39],[129,43,112,41],[130,6,113,4],[130,10,113,8],[130,11,113,9,"__callListeners"],[130,26,113,24],[130,27,113,25,"value"],[130,32,113,30],[130,33,113,31],[131,4,114,2],[132,4,115,2,"__callListeners"],[132,19,115,17,"__callListeners"],[132,20,115,18,"value"],[132,25,115,23],[132,27,115,25],[133,6,116,4],[133,11,116,9],[133,15,116,13,"_key"],[133,19,116,17],[133,23,116,21],[133,27,116,25],[133,28,116,26,"_listeners"],[133,38,116,36],[133,40,116,38],[134,8,117,6],[134,12,117,10],[134,13,117,11,"_listeners"],[134,23,117,21],[134,24,117,22,"_key"],[134,28,117,26],[134,29,117,27],[134,30,117,28],[135,10,118,8,"value"],[136,8,119,6],[136,9,119,7],[136,10,119,8],[137,6,120,4],[138,4,121,2],[139,4,122,2,"_stopListeningForNativeValueUpdates"],[139,39,122,37,"_stopListeningForNativeValueUpdates"],[139,40,122,37],[139,42,122,40],[140,6,123,4],[140,10,123,8],[140,11,123,9],[140,15,123,13],[140,16,123,14,"__nativeAnimatedValueListener"],[140,45,123,43],[140,47,123,45],[141,8,124,6],[142,6,125,4],[143,6,126,4],[143,10,126,8],[143,11,126,9,"__nativeAnimatedValueListener"],[143,40,126,38],[143,41,126,39,"remove"],[143,47,126,45],[143,48,126,46],[143,49,126,47],[144,6,127,4],[144,10,127,8],[144,11,127,9,"__nativeAnimatedValueListener"],[144,40,127,38],[144,43,127,41],[144,47,127,45],[145,6,128,4,"NativeAnimatedAPI"],[145,23,128,21],[145,24,128,22,"stopListeningToAnimatedNodeValue"],[145,56,128,54],[145,57,128,55],[145,61,128,59],[145,62,128,60,"__getNativeTag"],[145,76,128,74],[145,77,128,75],[145,78,128,76],[145,79,128,77],[146,4,129,2],[147,4,130,2,"__getNativeTag"],[147,18,130,16,"__getNativeTag"],[147,19,130,16],[147,21,130,19],[148,6,131,4],[148,10,131,8,"_this$__nativeTag"],[148,27,131,25],[149,6,132,4,"NativeAnimatedHelper"],[149,26,132,24],[149,27,132,24,"default"],[149,34,132,24],[149,35,132,25,"assertNativeAnimatedModule"],[149,61,132,51],[149,62,132,52],[149,63,132,53],[150,6,133,4],[150,10,133,4,"invariant"],[150,19,133,13],[150,20,133,13,"default"],[150,27,133,13],[150,29,133,14],[150,33,133,18],[150,34,133,19,"__isNative"],[150,44,133,29],[150,46,133,31],[150,106,133,91],[150,107,133,92],[151,6,134,4],[151,10,134,8,"nativeTag"],[151,19,134,17],[151,22,134,20],[151,23,134,21,"_this$__nativeTag"],[151,40,134,38],[151,43,134,41],[151,47,134,45],[151,48,134,46,"__nativeTag"],[151,59,134,57],[151,65,134,63],[151,69,134,67],[151,73,134,71,"_this$__nativeTag"],[151,90,134,88],[151,95,134,93],[151,100,134,98],[151,101,134,99],[151,104,134,102,"_this$__nativeTag"],[151,121,134,119],[151,124,134,122,"NativeAnimatedHelper"],[151,144,134,142],[151,145,134,142,"default"],[151,152,134,142],[151,153,134,143,"generateNewNodeTag"],[151,171,134,161],[151,172,134,162],[151,173,134,163],[152,6,135,4],[152,10,135,8],[152,14,135,12],[152,15,135,13,"__nativeTag"],[152,26,135,24],[152,30,135,28],[152,34,135,32],[152,36,135,34],[153,8,136,6],[153,12,136,10],[153,13,136,11,"__nativeTag"],[153,24,136,22],[153,27,136,25,"nativeTag"],[153,36,136,34],[154,8,137,6],[154,12,137,10,"config"],[154,18,137,16],[154,21,137,19],[154,25,137,23],[154,26,137,24,"__getNativeConfig"],[154,43,137,41],[154,44,137,42],[154,45,137,43],[155,8,138,6],[155,12,138,10],[155,16,138,14],[155,17,138,15,"_platformConfig"],[155,32,138,30],[155,34,138,32],[156,10,139,8,"config"],[156,16,139,14],[156,17,139,15,"platformConfig"],[156,31,139,29],[156,34,139,32],[156,38,139,36],[156,39,139,37,"_platformConfig"],[156,54,139,52],[157,8,140,6],[158,8,141,6,"NativeAnimatedHelper"],[158,28,141,26],[158,29,141,26,"default"],[158,36,141,26],[158,37,141,27,"API"],[158,40,141,30],[158,41,141,31,"createAnimatedNode"],[158,59,141,49],[158,60,141,50,"nativeTag"],[158,69,141,59],[158,71,141,61,"config"],[158,77,141,67],[158,78,141,68],[159,8,142,6],[159,12,142,10],[159,13,142,11,"__shouldUpdateListenersForNewNativeTag"],[159,51,142,49],[159,54,142,52],[159,58,142,56],[160,6,143,4],[161,6,144,4],[161,13,144,11,"nativeTag"],[161,22,144,20],[162,4,145,2],[163,4,146,2,"__getNativeConfig"],[163,21,146,19,"__getNativeConfig"],[163,22,146,19],[163,24,146,22],[164,6,147,4],[164,12,147,10],[164,16,147,14,"Error"],[164,21,147,19],[164,22,147,20],[164,89,147,87],[164,90,147,88],[165,4,148,2],[166,4,149,2,"toJSON"],[166,10,149,8,"toJSON"],[166,11,149,8],[166,13,149,11],[167,6,150,4],[167,13,150,11],[167,17,150,15],[167,18,150,16,"__getValue"],[167,28,150,26],[167,29,150,27],[167,30,150,28],[168,4,151,2],[169,4,152,2,"__getPlatformConfig"],[169,23,152,21,"__getPlatformConfig"],[169,24,152,21],[169,26,152,24],[170,6,153,4],[170,13,153,11],[170,17,153,15],[170,18,153,16,"_platformConfig"],[170,33,153,31],[171,4,154,2],[172,4,155,2,"__setPlatformConfig"],[172,23,155,21,"__setPlatformConfig"],[172,24,155,22,"platformConfig"],[172,38,155,36],[172,40,155,38],[173,6,156,4],[173,10,156,8],[173,11,156,9,"_platformConfig"],[173,26,156,24],[173,29,156,27,"platformConfig"],[173,43,156,41],[174,4,157,2],[175,2,158,0],[176,2,159,0],[176,6,159,0,"_default"],[176,14,159,0],[176,17,159,15,"AnimatedNode"],[176,29,159,27],[177,0,159,28],[177,3]],"functionMap":{"names":["<global>","AnimatedNode","__attach","__detach","__getValue","__getAnimatedValue","__addChild","__removeChild","__getChildren","constructor","__makeNative","addListener","removeListener","removeAllListeners","hasListeners","_startListeningToNativeValueUpdates","NativeAnimatedHelper.nativeEventEmitter.addListener$argument_1","__onAnimatedValueUpdateReceived","__callListeners","_stopListeningForNativeValueUpdates","__getNativeTag","__getNativeConfig","toJSON","__getPlatformConfig","__setPlatformConfig"],"mappings":"AAA;ACmB;ECC,aD;EEC;GFK;EGC,eH;EIC;GJE;EKC,oBL;EMC,uBN;EOC;GPE;EQI;GRE;ESC;GTQ;EUS;GVO;EWQ;GXK;EYO;GZK;EaC;GbE;EcC;sHCS;KDK;GdC;EgBC;GhBE;EiBC;GjBM;EkBC;GlBO;EmBC;GnBe;EoBC;GpBE;EqBC;GrBE;EsBC;GtBE;EuBC;GvBE;CDC"},"hasCjsExports":false},"type":"js/module"}]} |