mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 18:01:02 +00:00
1 line
19 KiB
Plaintext
1 line
19 KiB
Plaintext
{"dependencies":[{"name":"@babel/runtime/helpers/slicedToArray","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"5y7e5+zC7teYEEC6niD9f5zII1M=","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 function _interopDefault(e) {\n return e && e.__esModule ? e : {\n default: e\n };\n }\n exports.getActionFromState = getActionFromState;\n var _babelRuntimeHelpersSlicedToArray = require(_dependencyMap[0], \"@babel/runtime/helpers/slicedToArray\");\n var _slicedToArray = _interopDefault(_babelRuntimeHelpersSlicedToArray);\n function getActionFromState(state, options) {\n var _state$index, _normalizedConfig$scr, _config;\n // Create a normalized configs object which will be easier to use\n var normalizedConfig = options ? createNormalizedConfigItem(options) : {};\n var routes = state.index != null ? state.routes.slice(0, state.index + 1) : state.routes;\n if (routes.length === 0) {\n return undefined;\n }\n if (!(routes.length === 1 && routes[0].key === undefined || routes.length === 2 && routes[0].key === undefined && routes[0].name === (normalizedConfig == null ? void 0 : normalizedConfig.initialRouteName) && routes[1].key === undefined)) {\n return {\n type: 'RESET',\n payload: state\n };\n }\n var route = state.routes[(_state$index = state.index) != null ? _state$index : state.routes.length - 1];\n var current = route == null ? void 0 : route.state;\n var config = normalizedConfig == null || (_normalizedConfig$scr = normalizedConfig.screens) == null ? void 0 : _normalizedConfig$scr[route == null ? void 0 : route.name];\n var params = Object.assign({}, route.params);\n var payload = route ? {\n name: route.name,\n path: route.path,\n params: params\n } : undefined;\n\n // If the screen contains a navigator, pop other screens to navigate to it\n // This avoid pushing multiple instances of navigators onto a stack\n //\n // For example:\n // - RootStack\n // - BottomTabs\n // - SomeScreen\n //\n // In this case, if deep linking to `BottomTabs`, we should pop `SomeScreen`\n // Otherwise, we'll end up with 2 instances of `BottomTabs` in the stack\n //\n // There are 2 ways we can detect if a screen contains a navigator:\n // - The route contains nested state in `route.state`\n // - Nested screens are defined in the config\n if (payload && (_config = config) != null && _config.screens && Object.keys(config.screens).length) {\n payload.pop = true;\n }\n while (current) {\n var _config2, _config3, _config4;\n if (current.routes.length === 0) {\n return undefined;\n }\n var _routes = current.index != null ? current.routes.slice(0, current.index + 1) : current.routes;\n var _route = _routes[_routes.length - 1];\n\n // Explicitly set to override existing value when merging params\n Object.assign(params, {\n initial: undefined,\n screen: undefined,\n params: undefined,\n state: undefined\n });\n if (_routes.length === 1 && _routes[0].key === undefined) {\n params.initial = true;\n params.screen = _route.name;\n } else if (_routes.length === 2 && _routes[0].key === undefined && _routes[0].name === ((_config2 = config) == null ? void 0 : _config2.initialRouteName) && _routes[1].key === undefined) {\n params.initial = false;\n params.screen = _route.name;\n } else {\n params.state = current;\n break;\n }\n if (_route.state) {\n params.params = Object.assign({}, _route.params);\n params.pop = true;\n params = params.params;\n } else {\n params.path = _route.path;\n params.params = _route.params;\n }\n current = _route.state;\n config = (_config3 = config) == null || (_config3 = _config3.screens) == null ? void 0 : _config3[_route.name];\n if ((_config4 = config) != null && _config4.screens && Object.keys(config.screens).length) {\n params.pop = true;\n }\n }\n if (payload != null && payload.params.screen || payload != null && payload.params.state) {\n payload.pop = true;\n }\n if (!payload) {\n return;\n }\n\n // Try to construct payload for a `NAVIGATE` action from the state\n // This lets us preserve the navigation state and not lose it\n return {\n type: 'NAVIGATE',\n payload: payload\n };\n }\n var createNormalizedConfigItem = function createNormalizedConfigItem(config) {\n return typeof config === 'object' && config != null ? {\n initialRouteName: config.initialRouteName,\n screens: config.screens != null ? createNormalizedConfigs(config.screens) : undefined\n } : {};\n };\n var createNormalizedConfigs = function createNormalizedConfigs(options) {\n return Object.entries(options).reduce(function (acc, _ref) {\n var _ref2 = (0, _slicedToArray.default)(_ref, 2),\n k = _ref2[0],\n v = _ref2[1];\n acc[k] = createNormalizedConfigItem(v);\n return acc;\n }, {});\n };\n});","lineCount":124,"map":[[2,2,1,0],[2,14,1,12],[4,2,1,13,"Object"],[4,8,1,13],[4,9,1,13,"defineProperty"],[4,23,1,13],[4,24,1,13,"exports"],[4,31,1,13],[5,4,1,13,"value"],[5,9,1,13],[6,2,1,13],[7,2,1,13],[7,11,1,13,"_interopDefault"],[7,27,1,13,"e"],[7,28,1,13],[8,4,1,13],[8,11,1,13,"e"],[8,12,1,13],[8,16,1,13,"e"],[8,17,1,13],[8,18,1,13,"__esModule"],[8,28,1,13],[8,31,1,13,"e"],[8,32,1,13],[9,6,1,13,"default"],[9,13,1,13],[9,15,1,13,"e"],[10,4,1,13],[11,2,1,13],[12,2,3,0,"exports"],[12,9,3,0],[12,10,3,0,"getActionFromState"],[12,28,3,0],[12,31,3,0,"getActionFromState"],[12,49,3,0],[13,2,98,1],[13,6,98,1,"_babelRuntimeHelpersSlicedToArray"],[13,39,98,1],[13,42,98,1,"require"],[13,49,98,1],[13,50,98,1,"_dependencyMap"],[13,64,98,1],[14,2,98,1],[14,6,98,1,"_slicedToArray"],[14,20,98,1],[14,23,98,1,"_interopDefault"],[14,38,98,1],[14,39,98,1,"_babelRuntimeHelpersSlicedToArray"],[14,72,98,1],[15,2,3,7],[15,11,3,16,"getActionFromState"],[15,29,3,34,"getActionFromState"],[15,30,3,35,"state"],[15,35,3,40],[15,37,3,42,"options"],[15,44,3,49],[15,46,3,51],[16,4,3,51],[16,8,3,51,"_state$index"],[16,20,3,51],[16,22,3,51,"_normalizedConfig$scr"],[16,43,3,51],[16,45,3,51,"_config"],[16,52,3,51],[17,4,4,2],[18,4,5,2],[18,8,5,8,"normalizedConfig"],[18,24,5,24],[18,27,5,27,"options"],[18,34,5,34],[18,37,5,37,"createNormalizedConfigItem"],[18,63,5,63],[18,64,5,64,"options"],[18,71,5,71],[18,72,5,72],[18,75,5,75],[18,76,5,76],[18,77,5,77],[19,4,6,2],[19,8,6,8,"routes"],[19,14,6,14],[19,17,6,17,"state"],[19,22,6,22],[19,23,6,23,"index"],[19,28,6,28],[19,32,6,32],[19,36,6,36],[19,39,6,39,"state"],[19,44,6,44],[19,45,6,45,"routes"],[19,51,6,51],[19,52,6,52,"slice"],[19,57,6,57],[19,58,6,58],[19,59,6,59],[19,61,6,61,"state"],[19,66,6,66],[19,67,6,67,"index"],[19,72,6,72],[19,75,6,75],[19,76,6,76],[19,77,6,77],[19,80,6,80,"state"],[19,85,6,85],[19,86,6,86,"routes"],[19,92,6,92],[20,4,7,2],[20,8,7,6,"routes"],[20,14,7,12],[20,15,7,13,"length"],[20,21,7,19],[20,26,7,24],[20,27,7,25],[20,29,7,27],[21,6,8,4],[21,13,8,11,"undefined"],[21,22,8,20],[22,4,9,2],[23,4,10,2],[23,8,10,6],[23,10,10,8,"routes"],[23,16,10,14],[23,17,10,15,"length"],[23,23,10,21],[23,28,10,26],[23,29,10,27],[23,33,10,31,"routes"],[23,39,10,37],[23,40,10,38],[23,41,10,39],[23,42,10,40],[23,43,10,41,"key"],[23,46,10,44],[23,51,10,49,"undefined"],[23,60,10,58],[23,64,10,62,"routes"],[23,70,10,68],[23,71,10,69,"length"],[23,77,10,75],[23,82,10,80],[23,83,10,81],[23,87,10,85,"routes"],[23,93,10,91],[23,94,10,92],[23,95,10,93],[23,96,10,94],[23,97,10,95,"key"],[23,100,10,98],[23,105,10,103,"undefined"],[23,114,10,112],[23,118,10,116,"routes"],[23,124,10,122],[23,125,10,123],[23,126,10,124],[23,127,10,125],[23,128,10,126,"name"],[23,132,10,130],[23,138,10,135,"normalizedConfig"],[23,154,10,151],[23,174,10,135,"normalizedConfig"],[23,190,10,151],[23,191,10,153,"initialRouteName"],[23,207,10,169],[23,212,10,173,"routes"],[23,218,10,179],[23,219,10,180],[23,220,10,181],[23,221,10,182],[23,222,10,183,"key"],[23,225,10,186],[23,230,10,191,"undefined"],[23,239,10,200],[23,240,10,201],[23,242,10,203],[24,6,11,4],[24,13,11,11],[25,8,12,6,"type"],[25,12,12,10],[25,14,12,12],[25,21,12,19],[26,8,13,6,"payload"],[26,15,13,13],[26,17,13,15,"state"],[27,6,14,4],[27,7,14,5],[28,4,15,2],[29,4,16,2],[29,8,16,8,"route"],[29,13,16,13],[29,16,16,16,"state"],[29,21,16,21],[29,22,16,22,"routes"],[29,28,16,28],[29,30,16,28,"_state$index"],[29,42,16,28],[29,45,16,29,"state"],[29,50,16,34],[29,51,16,35,"index"],[29,56,16,40],[29,68,16,40,"_state$index"],[29,80,16,40],[29,83,16,44,"state"],[29,88,16,49],[29,89,16,50,"routes"],[29,95,16,56],[29,96,16,57,"length"],[29,102,16,63],[29,105,16,66],[29,106,16,67],[29,107,16,68],[30,4,17,2],[30,8,17,6,"current"],[30,15,17,13],[30,18,17,16,"route"],[30,23,17,21],[30,43,17,16,"route"],[30,48,17,21],[30,49,17,23,"state"],[30,54,17,28],[31,4,18,2],[31,8,18,6,"config"],[31,14,18,12],[31,17,18,15,"normalizedConfig"],[31,33,18,31],[31,46,18,31,"_normalizedConfig$scr"],[31,67,18,31],[31,70,18,15,"normalizedConfig"],[31,86,18,31],[31,87,18,33,"screens"],[31,94,18,40],[31,115,18,15,"_normalizedConfig$scr"],[31,136,18,15],[31,137,18,43,"route"],[31,142,18,48],[31,162,18,43,"route"],[31,167,18,48],[31,168,18,50,"name"],[31,172,18,54],[31,173,18,55],[32,4,19,2],[32,8,19,6,"params"],[32,14,19,12],[32,17,19,12,"Object"],[32,23,19,12],[32,24,19,12,"assign"],[32,30,19,12],[32,35,20,7,"route"],[32,40,20,12],[32,41,20,13,"params"],[32,47,20,19],[32,48,21,3],[33,4,22,2],[33,8,22,8,"payload"],[33,15,22,15],[33,18,22,18,"route"],[33,23,22,23],[33,26,22,26],[34,6,23,4,"name"],[34,10,23,8],[34,12,23,10,"route"],[34,17,23,15],[34,18,23,16,"name"],[34,22,23,20],[35,6,24,4,"path"],[35,10,24,8],[35,12,24,10,"route"],[35,17,24,15],[35,18,24,16,"path"],[35,22,24,20],[36,6,25,4,"params"],[36,12,25,10],[36,14,25,4,"params"],[37,4,26,2],[37,5,26,3],[37,8,26,6,"undefined"],[37,17,26,15],[39,4,28,2],[40,4,29,2],[41,4,30,2],[42,4,31,2],[43,4,32,2],[44,4,33,2],[45,4,34,2],[46,4,35,2],[47,4,36,2],[48,4,37,2],[49,4,38,2],[50,4,39,2],[51,4,40,2],[52,4,41,2],[53,4,42,2],[53,8,42,6,"payload"],[53,15,42,13],[53,20,42,13,"_config"],[53,27,42,13],[53,30,42,17,"config"],[53,36,42,23],[53,49,42,17,"_config"],[53,56,42,17],[53,57,42,25,"screens"],[53,64,42,32],[53,68,42,36,"Object"],[53,74,42,42],[53,75,42,43,"keys"],[53,79,42,47],[53,80,42,48,"config"],[53,86,42,54],[53,87,42,55,"screens"],[53,94,42,62],[53,95,42,63],[53,96,42,64,"length"],[53,102,42,70],[53,104,42,72],[54,6,43,4,"payload"],[54,13,43,11],[54,14,43,12,"pop"],[54,17,43,15],[54,20,43,18],[54,24,43,22],[55,4,44,2],[56,4,45,2],[56,11,45,9,"current"],[56,18,45,16],[56,20,45,18],[57,6,45,18],[57,10,45,18,"_config2"],[57,18,45,18],[57,20,45,18,"_config3"],[57,28,45,18],[57,30,45,18,"_config4"],[57,38,45,18],[58,6,46,4],[58,10,46,8,"current"],[58,17,46,15],[58,18,46,16,"routes"],[58,24,46,22],[58,25,46,23,"length"],[58,31,46,29],[58,36,46,34],[58,37,46,35],[58,39,46,37],[59,8,47,6],[59,15,47,13,"undefined"],[59,24,47,22],[60,6,48,4],[61,6,49,4],[61,10,49,10,"routes"],[61,17,49,16],[61,20,49,19,"current"],[61,27,49,26],[61,28,49,27,"index"],[61,33,49,32],[61,37,49,36],[61,41,49,40],[61,44,49,43,"current"],[61,51,49,50],[61,52,49,51,"routes"],[61,58,49,57],[61,59,49,58,"slice"],[61,64,49,63],[61,65,49,64],[61,66,49,65],[61,68,49,67,"current"],[61,75,49,74],[61,76,49,75,"index"],[61,81,49,80],[61,84,49,83],[61,85,49,84],[61,86,49,85],[61,89,49,88,"current"],[61,96,49,95],[61,97,49,96,"routes"],[61,103,49,102],[62,6,50,4],[62,10,50,10,"route"],[62,16,50,15],[62,19,50,18,"routes"],[62,26,50,24],[62,27,50,25,"routes"],[62,34,50,31],[62,35,50,32,"length"],[62,41,50,38],[62,44,50,41],[62,45,50,42],[62,46,50,43],[64,6,52,4],[65,6,53,4,"Object"],[65,12,53,10],[65,13,53,11,"assign"],[65,19,53,17],[65,20,53,18,"params"],[65,26,53,24],[65,28,53,26],[66,8,54,6,"initial"],[66,15,54,13],[66,17,54,15,"undefined"],[66,26,54,24],[67,8,55,6,"screen"],[67,14,55,12],[67,16,55,14,"undefined"],[67,25,55,23],[68,8,56,6,"params"],[68,14,56,12],[68,16,56,14,"undefined"],[68,25,56,23],[69,8,57,6,"state"],[69,13,57,11],[69,15,57,13,"undefined"],[70,6,58,4],[70,7,58,5],[70,8,58,6],[71,6,59,4],[71,10,59,8,"routes"],[71,17,59,14],[71,18,59,15,"length"],[71,24,59,21],[71,29,59,26],[71,30,59,27],[71,34,59,31,"routes"],[71,41,59,37],[71,42,59,38],[71,43,59,39],[71,44,59,40],[71,45,59,41,"key"],[71,48,59,44],[71,53,59,49,"undefined"],[71,62,59,58],[71,64,59,60],[72,8,60,6,"params"],[72,14,60,12],[72,15,60,13,"initial"],[72,22,60,20],[72,25,60,23],[72,29,60,27],[73,8,61,6,"params"],[73,14,61,12],[73,15,61,13,"screen"],[73,21,61,19],[73,24,61,22,"route"],[73,30,61,27],[73,31,61,28,"name"],[73,35,61,32],[74,6,62,4],[74,7,62,5],[74,13,62,11],[74,17,62,15,"routes"],[74,24,62,21],[74,25,62,22,"length"],[74,31,62,28],[74,36,62,33],[74,37,62,34],[74,41,62,38,"routes"],[74,48,62,44],[74,49,62,45],[74,50,62,46],[74,51,62,47],[74,52,62,48,"key"],[74,55,62,51],[74,60,62,56,"undefined"],[74,69,62,65],[74,73,62,69,"routes"],[74,80,62,75],[74,81,62,76],[74,82,62,77],[74,83,62,78],[74,84,62,79,"name"],[74,88,62,83],[74,95,62,83,"_config2"],[74,103,62,83],[74,106,62,88,"config"],[74,112,62,94],[74,133,62,88,"_config2"],[74,141,62,88],[74,142,62,96,"initialRouteName"],[74,158,62,112],[74,163,62,116,"routes"],[74,170,62,122],[74,171,62,123],[74,172,62,124],[74,173,62,125],[74,174,62,126,"key"],[74,177,62,129],[74,182,62,134,"undefined"],[74,191,62,143],[74,193,62,145],[75,8,63,6,"params"],[75,14,63,12],[75,15,63,13,"initial"],[75,22,63,20],[75,25,63,23],[75,30,63,28],[76,8,64,6,"params"],[76,14,64,12],[76,15,64,13,"screen"],[76,21,64,19],[76,24,64,22,"route"],[76,30,64,27],[76,31,64,28,"name"],[76,35,64,32],[77,6,65,4],[77,7,65,5],[77,13,65,11],[78,8,66,6,"params"],[78,14,66,12],[78,15,66,13,"state"],[78,20,66,18],[78,23,66,21,"current"],[78,30,66,28],[79,8,67,6],[80,6,68,4],[81,6,69,4],[81,10,69,8,"route"],[81,16,69,13],[81,17,69,14,"state"],[81,22,69,19],[81,24,69,21],[82,8,70,6,"params"],[82,14,70,12],[82,15,70,13,"params"],[82,21,70,19],[82,24,70,19,"Object"],[82,30,70,19],[82,31,70,19,"assign"],[82,37,70,19],[82,42,71,11,"route"],[82,48,71,16],[82,49,71,17,"params"],[82,55,71,23],[82,56,72,7],[83,8,73,6,"params"],[83,14,73,12],[83,15,73,13,"pop"],[83,18,73,16],[83,21,73,19],[83,25,73,23],[84,8,74,6,"params"],[84,14,74,12],[84,17,74,15,"params"],[84,23,74,21],[84,24,74,22,"params"],[84,30,74,28],[85,6,75,4],[85,7,75,5],[85,13,75,11],[86,8,76,6,"params"],[86,14,76,12],[86,15,76,13,"path"],[86,19,76,17],[86,22,76,20,"route"],[86,28,76,25],[86,29,76,26,"path"],[86,33,76,30],[87,8,77,6,"params"],[87,14,77,12],[87,15,77,13,"params"],[87,21,77,19],[87,24,77,22,"route"],[87,30,77,27],[87,31,77,28,"params"],[87,37,77,34],[88,6,78,4],[89,6,79,4,"current"],[89,13,79,11],[89,16,79,14,"route"],[89,22,79,19],[89,23,79,20,"state"],[89,28,79,25],[90,6,80,4,"config"],[90,12,80,10],[90,16,80,10,"_config3"],[90,24,80,10],[90,27,80,13,"config"],[90,33,80,19],[90,47,80,19,"_config3"],[90,55,80,19],[90,58,80,13,"_config3"],[90,66,80,13],[90,67,80,21,"screens"],[90,74,80,28],[90,95,80,13,"_config3"],[90,103,80,13],[90,104,80,31,"route"],[90,110,80,36],[90,111,80,37,"name"],[90,115,80,41],[90,116,80,42],[91,6,81,4],[91,10,81,8],[91,11,81,8,"_config4"],[91,19,81,8],[91,22,81,8,"config"],[91,28,81,14],[91,41,81,8,"_config4"],[91,49,81,8],[91,50,81,16,"screens"],[91,57,81,23],[91,61,81,27,"Object"],[91,67,81,33],[91,68,81,34,"keys"],[91,72,81,38],[91,73,81,39,"config"],[91,79,81,45],[91,80,81,46,"screens"],[91,87,81,53],[91,88,81,54],[91,89,81,55,"length"],[91,95,81,61],[91,97,81,63],[92,8,82,6,"params"],[92,14,82,12],[92,15,82,13,"pop"],[92,18,82,16],[92,21,82,19],[92,25,82,23],[93,6,83,4],[94,4,84,2],[95,4,85,2],[95,8,85,6,"payload"],[95,15,85,13],[95,27,85,6,"payload"],[95,34,85,13],[95,35,85,15,"params"],[95,41,85,21],[95,42,85,22,"screen"],[95,48,85,28],[95,52,85,32,"payload"],[95,59,85,39],[95,71,85,32,"payload"],[95,78,85,39],[95,79,85,41,"params"],[95,85,85,47],[95,86,85,48,"state"],[95,91,85,53],[95,93,85,55],[96,6,86,4,"payload"],[96,13,86,11],[96,14,86,12,"pop"],[96,17,86,15],[96,20,86,18],[96,24,86,22],[97,4,87,2],[98,4,88,2],[98,8,88,6],[98,9,88,7,"payload"],[98,16,88,14],[98,18,88,16],[99,6,89,4],[100,4,90,2],[102,4,92,2],[103,4,93,2],[104,4,94,2],[104,11,94,9],[105,6,95,4,"type"],[105,10,95,8],[105,12,95,10],[105,22,95,20],[106,6,96,4,"payload"],[106,13,96,11],[106,15,96,4,"payload"],[107,4,97,2],[107,5,97,3],[108,2,98,0],[109,2,99,0],[109,6,99,6,"createNormalizedConfigItem"],[109,32,99,32],[109,35,99,35],[109,44,99,6,"createNormalizedConfigItem"],[109,70,99,32,"createNormalizedConfigItem"],[109,71,99,35,"config"],[109,77,99,41],[110,4,99,41],[110,11,99,45],[110,18,99,52,"config"],[110,24,99,58],[110,29,99,63],[110,37,99,71],[110,41,99,75,"config"],[110,47,99,81],[110,51,99,85],[110,55,99,89],[110,58,99,92],[111,6,100,2,"initialRouteName"],[111,22,100,18],[111,24,100,20,"config"],[111,30,100,26],[111,31,100,27,"initialRouteName"],[111,47,100,43],[112,6,101,2,"screens"],[112,13,101,9],[112,15,101,11,"config"],[112,21,101,17],[112,22,101,18,"screens"],[112,29,101,25],[112,33,101,29],[112,37,101,33],[112,40,101,36,"createNormalizedConfigs"],[112,63,101,59],[112,64,101,60,"config"],[112,70,101,66],[112,71,101,67,"screens"],[112,78,101,74],[112,79,101,75],[112,82,101,78,"undefined"],[113,4,102,0],[113,5,102,1],[113,8,102,4],[113,9,102,5],[113,10,102,6],[114,2,102,6],[115,2,103,0],[115,6,103,6,"createNormalizedConfigs"],[115,29,103,29],[115,32,103,32],[115,41,103,6,"createNormalizedConfigs"],[115,64,103,29,"createNormalizedConfigs"],[115,65,103,32,"options"],[115,72,103,39],[116,4,103,39],[116,11,103,43,"Object"],[116,17,103,49],[116,18,103,50,"entries"],[116,25,103,57],[116,26,103,58,"options"],[116,33,103,65],[116,34,103,66],[116,35,103,67,"reduce"],[116,41,103,73],[116,42,103,74],[116,52,103,75,"acc"],[116,55,103,78],[116,57,103,78,"_ref"],[116,61,103,78],[116,63,103,91],[117,6,103,91],[117,10,103,91,"_ref2"],[117,15,103,91],[117,22,103,91,"_slicedToArray"],[117,36,103,91],[117,37,103,91,"default"],[117,44,103,91],[117,46,103,91,"_ref"],[117,50,103,91],[118,8,103,81,"k"],[118,9,103,82],[118,12,103,82,"_ref2"],[118,17,103,82],[119,8,103,84,"v"],[119,9,103,85],[119,12,103,85,"_ref2"],[119,17,103,85],[120,6,104,2,"acc"],[120,9,104,5],[120,10,104,6,"k"],[120,11,104,7],[120,12,104,8],[120,15,104,11,"createNormalizedConfigItem"],[120,41,104,37],[120,42,104,38,"v"],[120,43,104,39],[120,44,104,40],[121,6,105,2],[121,13,105,9,"acc"],[121,16,105,12],[122,4,106,0],[122,5,106,1],[122,7,106,3],[122,8,106,4],[122,9,106,5],[122,10,106,6],[123,2,106,6],[124,0,106,7],[124,3]],"functionMap":{"names":["<global>","getActionFromState","createNormalizedConfigItem","createNormalizedConfigs","Object.entries.reduce$argument_0"],"mappings":"AAA;OCE;CD+F;mCEC;MFG;gCGC,0CC;CDG,KH"},"hasCjsExports":false},"type":"js/module"}]} |