mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 06:31:03 +00:00
1 line
19 KiB
Plaintext
1 line
19 KiB
Plaintext
{"dependencies":[{"name":"@babel/runtime/helpers/interopRequireDefault","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"kslwqCIsh6ew+I1KeA1rlVRjsAk=","exportNames":["*"]}},{"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":["*"]}},{"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":["*"]}}],"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 var _interopRequireDefault = require(_dependencyMap[0], \"@babel/runtime/helpers/interopRequireDefault\");\n Object.defineProperty(exports, \"__esModule\", {\n value: true\n });\n exports.default = void 0;\n var _NativeAnimatedHelper = _interopRequireDefault(require(_dependencyMap[1], \"../NativeAnimatedHelper\"));\n var _invariant = _interopRequireDefault(require(_dependencyMap[2], \"fbjs/lib/invariant\"));\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 = exports.default = AnimatedNode;\n});","lineCount":166,"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],[14,6,11,13,"_interopRequireDefault"],[14,28,11,13],[14,31,11,13,"require"],[14,38,11,13],[14,39,11,13,"_dependencyMap"],[14,53,11,13],[15,2,11,13,"Object"],[15,8,11,13],[15,9,11,13,"defineProperty"],[15,23,11,13],[15,24,11,13,"exports"],[15,31,11,13],[16,4,11,13,"value"],[16,9,11,13],[17,2,11,13],[18,2,11,13,"exports"],[18,9,11,13],[18,10,11,13,"default"],[18,17,11,13],[19,2,13,0],[19,6,13,0,"_NativeAnimatedHelper"],[19,27,13,0],[19,30,13,0,"_interopRequireDefault"],[19,52,13,0],[19,53,13,0,"require"],[19,60,13,0],[19,61,13,0,"_dependencyMap"],[19,75,13,0],[20,2,15,0],[20,6,15,0,"_invariant"],[20,16,15,0],[20,19,15,0,"_interopRequireDefault"],[20,41,15,0],[20,42,15,0,"require"],[20,49,15,0],[20,50,15,0,"_dependencyMap"],[20,64,15,0],[21,2,14,0],[21,6,14,4,"NativeAnimatedAPI"],[21,23,14,21],[21,26,14,24,"NativeAnimatedHelper"],[21,55,14,44],[21,56,14,45,"API"],[21,59,14,48],[22,2,16,0],[22,6,16,4,"_uniqueId"],[22,15,16,13],[22,18,16,16],[22,19,16,17],[24,2,18,0],[25,2,19,0],[26,2,20,0],[26,8,20,6,"AnimatedNode"],[26,20,20,18],[26,21,20,19],[27,4,21,2,"__attach"],[27,12,21,10,"__attach"],[27,13,21,10],[27,15,21,13],[27,16,21,14],[28,4,22,2,"__detach"],[28,12,22,10,"__detach"],[28,13,22,10],[28,15,22,13],[29,6,23,4],[29,10,23,8],[29,14,23,12],[29,15,23,13,"__isNative"],[29,25,23,23],[29,29,23,27],[29,33,23,31],[29,34,23,32,"__nativeTag"],[29,45,23,43],[29,49,23,47],[29,53,23,51],[29,55,23,53],[30,8,24,6,"NativeAnimatedHelper"],[30,37,24,26],[30,38,24,27,"API"],[30,41,24,30],[30,42,24,31,"dropAnimatedNode"],[30,58,24,47],[30,59,24,48],[30,63,24,52],[30,64,24,53,"__nativeTag"],[30,75,24,64],[30,76,24,65],[31,8,25,6],[31,12,25,10],[31,13,25,11,"__nativeTag"],[31,24,25,22],[31,27,25,25,"undefined"],[31,36,25,34],[32,6,26,4],[33,4,27,2],[34,4,28,2,"__getValue"],[34,14,28,12,"__getValue"],[34,15,28,12],[34,17,28,15],[34,18,28,16],[35,4,29,2,"__getAnimatedValue"],[35,22,29,20,"__getAnimatedValue"],[35,23,29,20],[35,25,29,23],[36,6,30,4],[36,13,30,11],[36,17,30,15],[36,18,30,16,"__getValue"],[36,28,30,26],[36,29,30,27],[36,30,30,28],[37,4,31,2],[38,4,32,2,"__addChild"],[38,14,32,12,"__addChild"],[38,15,32,13,"child"],[38,20,32,18],[38,22,32,20],[38,23,32,21],[39,4,33,2,"__removeChild"],[39,17,33,15,"__removeChild"],[39,18,33,16,"child"],[39,23,33,21],[39,25,33,23],[39,26,33,24],[40,4,34,2,"__getChildren"],[40,17,34,15,"__getChildren"],[40,18,34,15],[40,20,34,18],[41,6,35,4],[41,13,35,11],[41,15,35,13],[42,4,36,2],[44,4,38,2],[46,4,40,2,"constructor"],[46,15,40,13,"constructor"],[46,16,40,13],[46,18,40,16],[47,6,41,4],[47,10,41,8],[47,11,41,9,"_listeners"],[47,21,41,19],[47,24,41,22],[47,25,41,23],[47,26,41,24],[48,4,42,2],[49,4,43,2,"__makeNative"],[49,16,43,14,"__makeNative"],[49,17,43,15,"platformConfig"],[49,31,43,29],[49,33,43,31],[50,6,44,4],[50,10,44,8],[50,11,44,9],[50,15,44,13],[50,16,44,14,"__isNative"],[50,26,44,24],[50,28,44,26],[51,8,45,6],[51,14,45,12],[51,18,45,16,"Error"],[51,23,45,21],[51,24,45,22],[51,75,45,73],[51,76,45,74],[52,6,46,4],[53,6,47,4],[53,10,47,8],[53,11,47,9,"_platformConfig"],[53,26,47,24],[53,29,47,27,"platformConfig"],[53,43,47,41],[54,6,48,4],[54,10,48,8],[54,14,48,12],[54,15,48,13,"hasListeners"],[54,27,48,25],[54,28,48,26],[54,29,48,27],[54,31,48,29],[55,8,49,6],[55,12,49,10],[55,13,49,11,"_startListeningToNativeValueUpdates"],[55,48,49,46],[55,49,49,47],[55,50,49,48],[56,6,50,4],[57,4,51,2],[59,4,53,2],[60,0,54,0],[61,0,55,0],[62,0,56,0],[63,0,57,0],[64,0,58,0],[65,0,59,0],[66,4,60,2,"addListener"],[66,15,60,13,"addListener"],[66,16,60,14,"callback"],[66,24,60,22],[66,26,60,24],[67,6,61,4],[67,10,61,8,"id"],[67,12,61,10],[67,15,61,13,"String"],[67,21,61,19],[67,22,61,20,"_uniqueId"],[67,31,61,29],[67,33,61,31],[67,34,61,32],[68,6,62,4],[68,10,62,8],[68,11,62,9,"_listeners"],[68,21,62,19],[68,22,62,20,"id"],[68,24,62,22],[68,25,62,23],[68,28,62,26,"callback"],[68,36,62,34],[69,6,63,4],[69,10,63,8],[69,14,63,12],[69,15,63,13,"__isNative"],[69,25,63,23],[69,27,63,25],[70,8,64,6],[70,12,64,10],[70,13,64,11,"_startListeningToNativeValueUpdates"],[70,48,64,46],[70,49,64,47],[70,50,64,48],[71,6,65,4],[72,6,66,4],[72,13,66,11,"id"],[72,15,66,13],[73,4,67,2],[75,4,69,2],[76,0,70,0],[77,0,71,0],[78,0,72,0],[79,0,73,0],[80,0,74,0],[81,4,75,2,"removeListener"],[81,18,75,16,"removeListener"],[81,19,75,17,"id"],[81,21,75,19],[81,23,75,21],[82,6,76,4],[82,13,76,11],[82,17,76,15],[82,18,76,16,"_listeners"],[82,28,76,26],[82,29,76,27,"id"],[82,31,76,29],[82,32,76,30],[83,6,77,4],[83,10,77,8],[83,14,77,12],[83,15,77,13,"__isNative"],[83,25,77,23],[83,29,77,27],[83,30,77,28],[83,34,77,32],[83,35,77,33,"hasListeners"],[83,47,77,45],[83,48,77,46],[83,49,77,47],[83,51,77,49],[84,8,78,6],[84,12,78,10],[84,13,78,11,"_stopListeningForNativeValueUpdates"],[84,48,78,46],[84,49,78,47],[84,50,78,48],[85,6,79,4],[86,4,80,2],[88,4,82,2],[89,0,83,0],[90,0,84,0],[91,0,85,0],[92,0,86,0],[93,4,87,2,"removeAllListeners"],[93,22,87,20,"removeAllListeners"],[93,23,87,20],[93,25,87,23],[94,6,88,4],[94,10,88,8],[94,11,88,9,"_listeners"],[94,21,88,19],[94,24,88,22],[94,25,88,23],[94,26,88,24],[95,6,89,4],[95,10,89,8],[95,14,89,12],[95,15,89,13,"__isNative"],[95,25,89,23],[95,27,89,25],[96,8,90,6],[96,12,90,10],[96,13,90,11,"_stopListeningForNativeValueUpdates"],[96,48,90,46],[96,49,90,47],[96,50,90,48],[97,6,91,4],[98,4,92,2],[99,4,93,2,"hasListeners"],[99,16,93,14,"hasListeners"],[99,17,93,14],[99,19,93,17],[100,6,94,4],[100,13,94,11],[100,14,94,12],[100,15,94,13,"Object"],[100,21,94,19],[100,22,94,20,"keys"],[100,26,94,24],[100,27,94,25],[100,31,94,29],[100,32,94,30,"_listeners"],[100,42,94,40],[100,43,94,41],[100,44,94,42,"length"],[100,50,94,48],[101,4,95,2],[102,4,96,2,"_startListeningToNativeValueUpdates"],[102,39,96,37,"_startListeningToNativeValueUpdates"],[102,40,96,37],[102,42,96,40],[103,6,97,4],[103,10,97,8],[103,14,97,12],[103,15,97,13,"__nativeAnimatedValueListener"],[103,44,97,42],[103,48,97,46],[103,49,97,47],[103,53,97,51],[103,54,97,52,"__shouldUpdateListenersForNewNativeTag"],[103,92,97,90],[103,94,97,92],[104,8,98,6],[105,6,99,4],[106,6,100,4],[106,10,100,8],[106,14,100,12],[106,15,100,13,"__shouldUpdateListenersForNewNativeTag"],[106,53,100,51],[106,55,100,53],[107,8,101,6],[107,12,101,10],[107,13,101,11,"__shouldUpdateListenersForNewNativeTag"],[107,51,101,49],[107,54,101,52],[107,59,101,57],[108,8,102,6],[108,12,102,10],[108,13,102,11,"_stopListeningForNativeValueUpdates"],[108,48,102,46],[108,49,102,47],[108,50,102,48],[109,6,103,4],[110,6,104,4,"NativeAnimatedAPI"],[110,23,104,21],[110,24,104,22,"startListeningToAnimatedNodeValue"],[110,57,104,55],[110,58,104,56],[110,62,104,60],[110,63,104,61,"__getNativeTag"],[110,77,104,75],[110,78,104,76],[110,79,104,77],[110,80,104,78],[111,6,105,4],[111,10,105,8],[111,11,105,9,"__nativeAnimatedValueListener"],[111,40,105,38],[111,43,105,41,"NativeAnimatedHelper"],[111,72,105,61],[111,73,105,62,"nativeEventEmitter"],[111,91,105,80],[111,92,105,81,"addListener"],[111,103,105,92],[111,104,105,93],[111,127,105,116],[111,129,105,118,"data"],[111,133,105,122],[111,137,105,126],[112,8,106,6],[112,12,106,10,"data"],[112,16,106,14],[112,17,106,15,"tag"],[112,20,106,18],[112,25,106,23],[112,29,106,27],[112,30,106,28,"__getNativeTag"],[112,44,106,42],[112,45,106,43],[112,46,106,44],[112,48,106,46],[113,10,107,8],[114,8,108,6],[115,8,109,6],[115,12,109,10],[115,13,109,11,"__onAnimatedValueUpdateReceived"],[115,44,109,42],[115,45,109,43,"data"],[115,49,109,47],[115,50,109,48,"value"],[115,55,109,53],[115,56,109,54],[116,6,110,4],[116,7,110,5],[116,8,110,6],[117,4,111,2],[118,4,112,2,"__onAnimatedValueUpdateReceived"],[118,35,112,33,"__onAnimatedValueUpdateReceived"],[118,36,112,34,"value"],[118,41,112,39],[118,43,112,41],[119,6,113,4],[119,10,113,8],[119,11,113,9,"__callListeners"],[119,26,113,24],[119,27,113,25,"value"],[119,32,113,30],[119,33,113,31],[120,4,114,2],[121,4,115,2,"__callListeners"],[121,19,115,17,"__callListeners"],[121,20,115,18,"value"],[121,25,115,23],[121,27,115,25],[122,6,116,4],[122,11,116,9],[122,15,116,13,"_key"],[122,19,116,17],[122,23,116,21],[122,27,116,25],[122,28,116,26,"_listeners"],[122,38,116,36],[122,40,116,38],[123,8,117,6],[123,12,117,10],[123,13,117,11,"_listeners"],[123,23,117,21],[123,24,117,22,"_key"],[123,28,117,26],[123,29,117,27],[123,30,117,28],[124,10,118,8,"value"],[125,8,119,6],[125,9,119,7],[125,10,119,8],[126,6,120,4],[127,4,121,2],[128,4,122,2,"_stopListeningForNativeValueUpdates"],[128,39,122,37,"_stopListeningForNativeValueUpdates"],[128,40,122,37],[128,42,122,40],[129,6,123,4],[129,10,123,8],[129,11,123,9],[129,15,123,13],[129,16,123,14,"__nativeAnimatedValueListener"],[129,45,123,43],[129,47,123,45],[130,8,124,6],[131,6,125,4],[132,6,126,4],[132,10,126,8],[132,11,126,9,"__nativeAnimatedValueListener"],[132,40,126,38],[132,41,126,39,"remove"],[132,47,126,45],[132,48,126,46],[132,49,126,47],[133,6,127,4],[133,10,127,8],[133,11,127,9,"__nativeAnimatedValueListener"],[133,40,127,38],[133,43,127,41],[133,47,127,45],[134,6,128,4,"NativeAnimatedAPI"],[134,23,128,21],[134,24,128,22,"stopListeningToAnimatedNodeValue"],[134,56,128,54],[134,57,128,55],[134,61,128,59],[134,62,128,60,"__getNativeTag"],[134,76,128,74],[134,77,128,75],[134,78,128,76],[134,79,128,77],[135,4,129,2],[136,4,130,2,"__getNativeTag"],[136,18,130,16,"__getNativeTag"],[136,19,130,16],[136,21,130,19],[137,6,131,4],[137,10,131,8,"_this$__nativeTag"],[137,27,131,25],[138,6,132,4,"NativeAnimatedHelper"],[138,35,132,24],[138,36,132,25,"assertNativeAnimatedModule"],[138,62,132,51],[138,63,132,52],[138,64,132,53],[139,6,133,4],[139,10,133,4,"invariant"],[139,28,133,13],[139,30,133,14],[139,34,133,18],[139,35,133,19,"__isNative"],[139,45,133,29],[139,47,133,31],[139,107,133,91],[139,108,133,92],[140,6,134,4],[140,10,134,8,"nativeTag"],[140,19,134,17],[140,22,134,20],[140,23,134,21,"_this$__nativeTag"],[140,40,134,38],[140,43,134,41],[140,47,134,45],[140,48,134,46,"__nativeTag"],[140,59,134,57],[140,65,134,63],[140,69,134,67],[140,73,134,71,"_this$__nativeTag"],[140,90,134,88],[140,95,134,93],[140,100,134,98],[140,101,134,99],[140,104,134,102,"_this$__nativeTag"],[140,121,134,119],[140,124,134,122,"NativeAnimatedHelper"],[140,153,134,142],[140,154,134,143,"generateNewNodeTag"],[140,172,134,161],[140,173,134,162],[140,174,134,163],[141,6,135,4],[141,10,135,8],[141,14,135,12],[141,15,135,13,"__nativeTag"],[141,26,135,24],[141,30,135,28],[141,34,135,32],[141,36,135,34],[142,8,136,6],[142,12,136,10],[142,13,136,11,"__nativeTag"],[142,24,136,22],[142,27,136,25,"nativeTag"],[142,36,136,34],[143,8,137,6],[143,12,137,10,"config"],[143,18,137,16],[143,21,137,19],[143,25,137,23],[143,26,137,24,"__getNativeConfig"],[143,43,137,41],[143,44,137,42],[143,45,137,43],[144,8,138,6],[144,12,138,10],[144,16,138,14],[144,17,138,15,"_platformConfig"],[144,32,138,30],[144,34,138,32],[145,10,139,8,"config"],[145,16,139,14],[145,17,139,15,"platformConfig"],[145,31,139,29],[145,34,139,32],[145,38,139,36],[145,39,139,37,"_platformConfig"],[145,54,139,52],[146,8,140,6],[147,8,141,6,"NativeAnimatedHelper"],[147,37,141,26],[147,38,141,27,"API"],[147,41,141,30],[147,42,141,31,"createAnimatedNode"],[147,60,141,49],[147,61,141,50,"nativeTag"],[147,70,141,59],[147,72,141,61,"config"],[147,78,141,67],[147,79,141,68],[148,8,142,6],[148,12,142,10],[148,13,142,11,"__shouldUpdateListenersForNewNativeTag"],[148,51,142,49],[148,54,142,52],[148,58,142,56],[149,6,143,4],[150,6,144,4],[150,13,144,11,"nativeTag"],[150,22,144,20],[151,4,145,2],[152,4,146,2,"__getNativeConfig"],[152,21,146,19,"__getNativeConfig"],[152,22,146,19],[152,24,146,22],[153,6,147,4],[153,12,147,10],[153,16,147,14,"Error"],[153,21,147,19],[153,22,147,20],[153,89,147,87],[153,90,147,88],[154,4,148,2],[155,4,149,2,"toJSON"],[155,10,149,8,"toJSON"],[155,11,149,8],[155,13,149,11],[156,6,150,4],[156,13,150,11],[156,17,150,15],[156,18,150,16,"__getValue"],[156,28,150,26],[156,29,150,27],[156,30,150,28],[157,4,151,2],[158,4,152,2,"__getPlatformConfig"],[158,23,152,21,"__getPlatformConfig"],[158,24,152,21],[158,26,152,24],[159,6,153,4],[159,13,153,11],[159,17,153,15],[159,18,153,16,"_platformConfig"],[159,33,153,31],[160,4,154,2],[161,4,155,2,"__setPlatformConfig"],[161,23,155,21,"__setPlatformConfig"],[161,24,155,22,"platformConfig"],[161,38,155,36],[161,40,155,38],[162,6,156,4],[162,10,156,8],[162,11,156,9,"_platformConfig"],[162,26,156,24],[162,29,156,27,"platformConfig"],[162,43,156,41],[163,4,157,2],[164,2,158,0],[165,2,158,1],[165,6,158,1,"_default"],[165,14,158,1],[165,17,158,1,"exports"],[165,24,158,1],[165,25,158,1,"default"],[165,32,158,1],[165,35,159,15,"AnimatedNode"],[165,47,159,27],[166,0,159,27],[166,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"}},"type":"js/module"}]} |