mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 19:11:02 +00:00
1 line
19 KiB
Plaintext
1 line
19 KiB
Plaintext
{"dependencies":[{"name":"@babel/runtime/helpers/asyncToGenerator","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"YisBBiy2Xm9DEVdFebZ2nbgAHBo=","exportNames":["*"],"imports":1}},{"name":"expo-modules-core","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":1,"column":0,"index":0},"end":{"line":1,"column":80,"index":80}}],"key":"fU8WLIPqoAGygnPbZ/QJiQQfXEY=","exportNames":["*"],"imports":1}},{"name":"react","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":2,"column":0,"index":81},"end":{"line":2,"column":41,"index":122}}],"key":"RtGiGa+/H7VrI7GDQDLhO1UbpU8=","exportNames":["*"],"imports":1}},{"name":"./ExpoKeepAwake","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":4,"column":0,"index":124},"end":{"line":4,"column":44,"index":168}}],"key":"jHLfBdSv8mZ/wVreo+zqR61TL84=","exportNames":["*"],"imports":1}},{"name":"./KeepAwake.types","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":122,"column":0,"index":4667},"end":{"line":122,"column":34,"index":4701}}],"key":"EDDLHqNoG4Xp68CaWUMvy09c+fg=","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 Object.defineProperty(exports, \"ExpoKeepAwakeTag\", {\n enumerable: true,\n get: function () {\n return ExpoKeepAwakeTag;\n }\n });\n exports.isAvailableAsync = isAvailableAsync;\n exports.useKeepAwake = useKeepAwake;\n exports.activateKeepAwake = activateKeepAwake;\n exports.activateKeepAwakeAsync = activateKeepAwakeAsync;\n exports.deactivateKeepAwake = deactivateKeepAwake;\n exports.addListener = addListener;\n var _babelRuntimeHelpersAsyncToGenerator = require(_dependencyMap[0], \"@babel/runtime/helpers/asyncToGenerator\");\n var _asyncToGenerator = _interopDefault(_babelRuntimeHelpersAsyncToGenerator);\n var _expoModulesCore = require(_dependencyMap[1], \"expo-modules-core\");\n var _react = require(_dependencyMap[2], \"react\");\n var _ExpoKeepAwake = require(_dependencyMap[3], \"./ExpoKeepAwake\");\n var ExpoKeepAwake = _interopDefault(_ExpoKeepAwake);\n var _KeepAwakeTypes = require(_dependencyMap[4], \"./KeepAwake.types\");\n Object.keys(_KeepAwakeTypes).forEach(function (k) {\n if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) {\n Object.defineProperty(exports, k, {\n enumerable: true,\n get: function () {\n return _KeepAwakeTypes[k];\n }\n });\n }\n });\n /** Default tag, used when no tag has been specified in keep awake method calls. */\n var ExpoKeepAwakeTag = 'ExpoKeepAwakeDefaultTag';\n\n /** @returns `true` on all platforms except [unsupported web browsers](https://caniuse.com/wake-lock). */\n function isAvailableAsync() {\n return _isAvailableAsync.apply(this, arguments);\n }\n /**\n * A React hook to keep the screen awake for as long as the owner component is mounted.\n * The optionally provided `tag` argument is used when activating and deactivating the keep-awake\n * feature. If unspecified, an ID unique to the owner component is used. See the documentation for\n * `activateKeepAwakeAsync` below to learn more about the `tag` argument.\n *\n * @param tag Tag to lock screen sleep prevention. If not provided, an ID unique to the owner component is used.\n * @param options Additional options for the keep awake hook.\n */\n function _isAvailableAsync() {\n _isAvailableAsync = (0, _asyncToGenerator.default)(function* () {\n if (ExpoKeepAwake.default.isAvailableAsync) {\n return yield ExpoKeepAwake.default.isAvailableAsync();\n }\n return true;\n });\n return _isAvailableAsync.apply(this, arguments);\n }\n function useKeepAwake(tag, options) {\n var defaultTag = (0, _react.useId)();\n var tagOrDefault = tag ?? defaultTag;\n (0, _react.useEffect)(() => {\n var isMounted = true;\n activateKeepAwakeAsync(tagOrDefault).then(() => {\n if (isMounted && ExpoKeepAwake.default.addListenerForTag && options?.listener) {\n addListener(tagOrDefault, options.listener);\n }\n });\n return () => {\n isMounted = false;\n if (options?.suppressDeactivateWarnings) {\n deactivateKeepAwake(tagOrDefault).catch(() => {});\n } else {\n deactivateKeepAwake(tagOrDefault);\n }\n };\n }, [tagOrDefault]);\n }\n\n // @needsAudit\n /**\n * Prevents the screen from sleeping until `deactivateKeepAwake` is called with the same `tag` value.\n *\n * If the `tag` argument is specified, the screen will not sleep until you call `deactivateKeepAwake`\n * with the same `tag` argument. When using multiple `tags` for activation you'll have to deactivate\n * each one in order to re-enable screen sleep. If tag is unspecified, the default `tag` is used.\n *\n * Web support [is limited](https://caniuse.com/wake-lock).\n *\n * @param tag Tag to lock screen sleep prevention. If not provided, the default tag is used.\n * @deprecated use `activateKeepAwakeAsync` instead.\n */\n function activateKeepAwake() {\n var tag = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : ExpoKeepAwakeTag;\n console.warn('`activateKeepAwake` is deprecated. Use `activateKeepAwakeAsync` instead.');\n return activateKeepAwakeAsync(tag);\n }\n\n // @needsAudit\n /**\n * Prevents the screen from sleeping until `deactivateKeepAwake` is called with the same `tag` value.\n *\n * If the `tag` argument is specified, the screen will not sleep until you call `deactivateKeepAwake`\n * with the same `tag` argument. When using multiple `tags` for activation you'll have to deactivate\n * each one in order to re-enable screen sleep. If tag is unspecified, the default `tag` is used.\n *\n * Web support [is limited](https://caniuse.com/wake-lock).\n *\n * @param tag Tag to lock screen sleep prevention. If not provided, the default tag is used.\n */\n function activateKeepAwakeAsync() {\n return _activateKeepAwakeAsync.apply(this, arguments);\n } // @needsAudit\n /**\n * Releases the lock on screen-sleep prevention associated with the given `tag` value. If `tag`\n * is unspecified, it defaults to the same default tag that `activateKeepAwake` uses.\n *\n * @param tag Tag to release the lock on screen sleep prevention. If not provided,\n * the default tag is used.\n */\n function _activateKeepAwakeAsync() {\n _activateKeepAwakeAsync = (0, _asyncToGenerator.default)(function* () {\n var tag = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : ExpoKeepAwakeTag;\n yield ExpoKeepAwake.default.activate?.(tag);\n });\n return _activateKeepAwakeAsync.apply(this, arguments);\n }\n function deactivateKeepAwake() {\n return _deactivateKeepAwake.apply(this, arguments);\n }\n /**\n * Observe changes to the keep awake timer.\n * On web, this changes when navigating away from the active window/tab. No-op on native.\n * @platform web\n *\n * @example\n * ```ts\n * KeepAwake.addListener(({ state }) => {\n * // ...\n * });\n * ```\n */\n function _deactivateKeepAwake() {\n _deactivateKeepAwake = (0, _asyncToGenerator.default)(function* () {\n var tag = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : ExpoKeepAwakeTag;\n yield ExpoKeepAwake.default.deactivate?.(tag);\n });\n return _deactivateKeepAwake.apply(this, arguments);\n }\n function addListener(tagOrListener, listener) {\n // Assert so the type is non-nullable.\n if (!ExpoKeepAwake.default.addListenerForTag) {\n throw new _expoModulesCore.UnavailabilityError('ExpoKeepAwake', 'addListenerForTag');\n }\n var tag = typeof tagOrListener === 'string' ? tagOrListener : ExpoKeepAwakeTag;\n var _listener = typeof tagOrListener === 'function' ? tagOrListener : listener;\n return ExpoKeepAwake.default.addListenerForTag(tag, _listener);\n }\n});","lineCount":166,"map":[[12,2,8,0,"Object"],[12,8,8,0],[12,9,8,0,"defineProperty"],[12,23,8,0],[12,24,8,0,"exports"],[12,31,8,0],[13,4,8,0,"enumerable"],[13,14,8,0],[14,4,8,0,"get"],[14,7,8,0],[14,18,8,0,"get"],[14,19,8,0],[15,6,8,0],[15,13,8,0,"ExpoKeepAwakeTag"],[15,29,8,0],[16,4,8,0],[17,2,8,0],[18,2,11,0,"exports"],[18,9,11,0],[18,10,11,0,"isAvailableAsync"],[18,26,11,0],[18,29,11,0,"isAvailableAsync"],[18,45,11,0],[19,2,27,0,"exports"],[19,9,27,0],[19,10,27,0,"useKeepAwake"],[19,22,27,0],[19,25,27,0,"useKeepAwake"],[19,37,27,0],[20,2,62,0,"exports"],[20,9,62,0],[20,10,62,0,"activateKeepAwake"],[20,27,62,0],[20,30,62,0,"activateKeepAwake"],[20,47,62,0],[21,2,79,0,"exports"],[21,9,79,0],[21,10,79,0,"activateKeepAwakeAsync"],[21,32,79,0],[21,35,79,0,"activateKeepAwakeAsync"],[21,57,79,0],[22,2,91,0,"exports"],[22,9,91,0],[22,10,91,0,"deactivateKeepAwake"],[22,29,91,0],[22,32,91,0,"deactivateKeepAwake"],[22,51,91,0],[23,2,107,0,"exports"],[23,9,107,0],[23,10,107,0,"addListener"],[23,21,107,0],[23,24,107,0,"addListener"],[23,35,107,0],[24,2,120,1],[24,6,120,1,"_babelRuntimeHelpersAsyncToGenerator"],[24,42,120,1],[24,45,120,1,"require"],[24,52,120,1],[24,53,120,1,"_dependencyMap"],[24,67,120,1],[25,2,120,1],[25,6,120,1,"_asyncToGenerator"],[25,23,120,1],[25,26,120,1,"_interopDefault"],[25,41,120,1],[25,42,120,1,"_babelRuntimeHelpersAsyncToGenerator"],[25,78,120,1],[26,2,1,0],[26,6,1,0,"_expoModulesCore"],[26,22,1,0],[26,25,1,0,"require"],[26,32,1,0],[26,33,1,0,"_dependencyMap"],[26,47,1,0],[27,2,2,0],[27,6,2,0,"_react"],[27,12,2,0],[27,15,2,0,"require"],[27,22,2,0],[27,23,2,0,"_dependencyMap"],[27,37,2,0],[28,2,4,0],[28,6,4,0,"_ExpoKeepAwake"],[28,20,4,0],[28,23,4,0,"require"],[28,30,4,0],[28,31,4,0,"_dependencyMap"],[28,45,4,0],[29,2,4,0],[29,6,4,0,"ExpoKeepAwake"],[29,19,4,0],[29,22,4,0,"_interopDefault"],[29,37,4,0],[29,38,4,0,"_ExpoKeepAwake"],[29,52,4,0],[30,2,122,0],[30,6,122,0,"_KeepAwakeTypes"],[30,21,122,0],[30,24,122,0,"require"],[30,31,122,0],[30,32,122,0,"_dependencyMap"],[30,46,122,0],[31,2,122,0,"Object"],[31,8,122,0],[31,9,122,0,"keys"],[31,13,122,0],[31,14,122,0,"_KeepAwakeTypes"],[31,29,122,0],[31,31,122,0,"forEach"],[31,38,122,0],[31,49,122,0,"k"],[31,50,122,0],[32,4,122,0],[32,8,122,0,"k"],[32,9,122,0],[32,28,122,0,"Object"],[32,34,122,0],[32,35,122,0,"prototype"],[32,44,122,0],[32,45,122,0,"hasOwnProperty"],[32,59,122,0],[32,60,122,0,"call"],[32,64,122,0],[32,65,122,0,"exports"],[32,72,122,0],[32,74,122,0,"k"],[32,75,122,0],[33,6,122,0,"Object"],[33,12,122,0],[33,13,122,0,"defineProperty"],[33,27,122,0],[33,28,122,0,"exports"],[33,35,122,0],[33,37,122,0,"k"],[33,38,122,0],[34,8,122,0,"enumerable"],[34,18,122,0],[35,8,122,0,"get"],[35,11,122,0],[35,22,122,0,"get"],[35,23,122,0],[36,10,122,0],[36,17,122,0,"_KeepAwakeTypes"],[36,32,122,0],[36,33,122,0,"k"],[36,34,122,0],[37,8,122,0],[38,6,122,0],[39,4,122,0],[40,2,122,0],[41,2,7,0],[42,2,8,7],[42,6,8,13,"ExpoKeepAwakeTag"],[42,22,8,29],[42,25,8,32],[42,50,8,57],[44,2,10,0],[45,2,10,0],[45,11,11,22,"isAvailableAsync"],[45,27,11,38,"isAvailableAsync"],[45,28,11,38],[46,4,11,38],[46,11,11,38,"_isAvailableAsync"],[46,28,11,38],[46,29,11,38,"apply"],[46,34,11,38],[46,41,11,38,"arguments"],[46,50,11,38],[47,2,11,38],[48,2,18,0],[49,0,19,0],[50,0,20,0],[51,0,21,0],[52,0,22,0],[53,0,23,0],[54,0,24,0],[55,0,25,0],[56,0,26,0],[57,2,18,0],[57,11,18,0,"_isAvailableAsync"],[57,29,18,0],[58,4,18,0,"_isAvailableAsync"],[58,21,18,0],[58,28,18,0,"_asyncToGenerator"],[58,45,18,0],[58,46,18,0,"default"],[58,53,18,0],[58,55,11,7],[58,68,11,59],[59,6,12,2],[59,10,12,6,"ExpoKeepAwake"],[59,23,12,19],[59,24,12,19,"default"],[59,31,12,19],[59,32,12,20,"isAvailableAsync"],[59,48,12,36],[59,50,12,38],[60,8,13,4],[60,21,13,17,"ExpoKeepAwake"],[60,34,13,30],[60,35,13,30,"default"],[60,42,13,30],[60,43,13,31,"isAvailableAsync"],[60,59,13,47],[60,60,13,48],[60,61,13,49],[61,6,14,2],[62,6,15,2],[62,13,15,9],[62,17,15,13],[63,4,16,0],[63,5,16,1],[64,4,16,1],[64,11,16,1,"_isAvailableAsync"],[64,28,16,1],[64,29,16,1,"apply"],[64,34,16,1],[64,41,16,1,"arguments"],[64,50,16,1],[65,2,16,1],[66,2,27,7],[66,11,27,16,"useKeepAwake"],[66,23,27,28,"useKeepAwake"],[66,24,27,29,"tag"],[66,27,27,41],[66,29,27,43,"options"],[66,36,27,69],[66,38,27,77],[67,4,28,2],[67,8,28,8,"defaultTag"],[67,18,28,18],[67,21,28,21],[67,25,28,21,"useId"],[67,31,28,26],[67,32,28,26,"useId"],[67,37,28,26],[67,39,28,27],[67,40,28,28],[68,4,29,2],[68,8,29,8,"tagOrDefault"],[68,20,29,20],[68,23,29,23,"tag"],[68,26,29,26],[68,30,29,30,"defaultTag"],[68,40,29,40],[69,4,31,2],[69,8,31,2,"useEffect"],[69,14,31,11],[69,15,31,11,"useEffect"],[69,24,31,11],[69,26,31,12],[69,32,31,18],[70,6,32,4],[70,10,32,8,"isMounted"],[70,19,32,17],[70,22,32,20],[70,26,32,24],[71,6,33,4,"activateKeepAwakeAsync"],[71,28,33,26],[71,29,33,27,"tagOrDefault"],[71,41,33,39],[71,42,33,40],[71,43,33,41,"then"],[71,47,33,45],[71,48,33,46],[71,54,33,52],[72,8,34,6],[72,12,34,10,"isMounted"],[72,21,34,19],[72,25,34,23,"ExpoKeepAwake"],[72,38,34,36],[72,39,34,36,"default"],[72,46,34,36],[72,47,34,37,"addListenerForTag"],[72,64,34,54],[72,68,34,58,"options"],[72,75,34,65],[72,77,34,67,"listener"],[72,85,34,75],[72,87,34,77],[73,10,35,8,"addListener"],[73,21,35,19],[73,22,35,20,"tagOrDefault"],[73,34,35,32],[73,36,35,34,"options"],[73,43,35,41],[73,44,35,42,"listener"],[73,52,35,50],[73,53,35,51],[74,8,36,6],[75,6,37,4],[75,7,37,5],[75,8,37,6],[76,6,38,4],[76,13,38,11],[76,19,38,17],[77,8,39,6,"isMounted"],[77,17,39,15],[77,20,39,18],[77,25,39,23],[78,8,40,6],[78,12,40,10,"options"],[78,19,40,17],[78,21,40,19,"suppressDeactivateWarnings"],[78,47,40,45],[78,49,40,47],[79,10,41,8,"deactivateKeepAwake"],[79,29,41,27],[79,30,41,28,"tagOrDefault"],[79,42,41,40],[79,43,41,41],[79,44,41,42,"catch"],[79,49,41,47],[79,50,41,48],[79,56,41,54],[79,57,41,55],[79,58,41,56],[79,59,41,57],[80,8,42,6],[80,9,42,7],[80,15,42,13],[81,10,43,8,"deactivateKeepAwake"],[81,29,43,27],[81,30,43,28,"tagOrDefault"],[81,42,43,40],[81,43,43,41],[82,8,44,6],[83,6,45,4],[83,7,45,5],[84,4,46,2],[84,5,46,3],[84,7,46,5],[84,8,46,6,"tagOrDefault"],[84,20,46,18],[84,21,46,19],[84,22,46,20],[85,2,47,0],[87,2,49,0],[88,2,50,0],[89,0,51,0],[90,0,52,0],[91,0,53,0],[92,0,54,0],[93,0,55,0],[94,0,56,0],[95,0,57,0],[96,0,58,0],[97,0,59,0],[98,0,60,0],[99,0,61,0],[100,2,62,7],[100,11,62,16,"activateKeepAwake"],[100,28,62,33,"activateKeepAwake"],[100,29,62,33],[100,31,62,81],[101,4,62,81],[101,8,62,34,"tag"],[101,11,62,45],[101,14,62,45,"arguments"],[101,23,62,45],[101,24,62,45,"length"],[101,30,62,45],[101,38,62,45,"arguments"],[101,47,62,45],[101,55,62,45,"undefined"],[101,64,62,45],[101,67,62,45,"arguments"],[101,76,62,45],[101,82,62,48,"ExpoKeepAwakeTag"],[101,98,62,64],[102,4,63,2,"console"],[102,11,63,9],[102,12,63,10,"warn"],[102,16,63,14],[102,17,63,15],[102,91,63,89],[102,92,63,90],[103,4,64,2],[103,11,64,9,"activateKeepAwakeAsync"],[103,33,64,31],[103,34,64,32,"tag"],[103,37,64,35],[103,38,64,36],[104,2,65,0],[106,2,67,0],[107,2,68,0],[108,0,69,0],[109,0,70,0],[110,0,71,0],[111,0,72,0],[112,0,73,0],[113,0,74,0],[114,0,75,0],[115,0,76,0],[116,0,77,0],[117,0,78,0],[118,2,68,0],[118,11,79,22,"activateKeepAwakeAsync"],[118,33,79,44,"activateKeepAwakeAsync"],[118,34,79,44],[119,4,79,44],[119,11,79,44,"_activateKeepAwakeAsync"],[119,34,79,44],[119,35,79,44,"apply"],[119,40,79,44],[119,47,79,44,"arguments"],[119,56,79,44],[120,2,79,44],[120,4,83,0],[121,2,84,0],[122,0,85,0],[123,0,86,0],[124,0,87,0],[125,0,88,0],[126,0,89,0],[127,0,90,0],[128,2,84,0],[128,11,84,0,"_activateKeepAwakeAsync"],[128,35,84,0],[129,4,84,0,"_activateKeepAwakeAsync"],[129,27,84,0],[129,34,84,0,"_asyncToGenerator"],[129,51,84,0],[129,52,84,0,"default"],[129,59,84,0],[129,61,79,7],[129,74,79,92],[130,6,79,92],[130,10,79,45,"tag"],[130,13,79,56],[130,16,79,56,"arguments"],[130,25,79,56],[130,26,79,56,"length"],[130,32,79,56],[130,40,79,56,"arguments"],[130,49,79,56],[130,57,79,56,"undefined"],[130,66,79,56],[130,69,79,56,"arguments"],[130,78,79,56],[130,84,79,59,"ExpoKeepAwakeTag"],[130,100,79,75],[131,6,80,2],[131,12,80,8,"ExpoKeepAwake"],[131,25,80,21],[131,26,80,21,"default"],[131,33,80,21],[131,34,80,22,"activate"],[131,42,80,30],[131,45,80,33,"tag"],[131,48,80,36],[131,49,80,37],[132,4,81,0],[132,5,81,1],[133,4,81,1],[133,11,81,1,"_activateKeepAwakeAsync"],[133,34,81,1],[133,35,81,1,"apply"],[133,40,81,1],[133,47,81,1,"arguments"],[133,56,81,1],[134,2,81,1],[135,2,81,1],[135,11,91,22,"deactivateKeepAwake"],[135,30,91,41,"deactivateKeepAwake"],[135,31,91,41],[136,4,91,41],[136,11,91,41,"_deactivateKeepAwake"],[136,31,91,41],[136,32,91,41,"apply"],[136,37,91,41],[136,44,91,41,"arguments"],[136,53,91,41],[137,2,91,41],[138,2,95,0],[139,0,96,0],[140,0,97,0],[141,0,98,0],[142,0,99,0],[143,0,100,0],[144,0,101,0],[145,0,102,0],[146,0,103,0],[147,0,104,0],[148,0,105,0],[149,0,106,0],[150,2,95,0],[150,11,95,0,"_deactivateKeepAwake"],[150,32,95,0],[151,4,95,0,"_deactivateKeepAwake"],[151,24,95,0],[151,31,95,0,"_asyncToGenerator"],[151,48,95,0],[151,49,95,0,"default"],[151,56,95,0],[151,58,91,7],[151,71,91,89],[152,6,91,89],[152,10,91,42,"tag"],[152,13,91,53],[152,16,91,53,"arguments"],[152,25,91,53],[152,26,91,53,"length"],[152,32,91,53],[152,40,91,53,"arguments"],[152,49,91,53],[152,57,91,53,"undefined"],[152,66,91,53],[152,69,91,53,"arguments"],[152,78,91,53],[152,84,91,56,"ExpoKeepAwakeTag"],[152,100,91,72],[153,6,92,2],[153,12,92,8,"ExpoKeepAwake"],[153,25,92,21],[153,26,92,21,"default"],[153,33,92,21],[153,34,92,22,"deactivate"],[153,44,92,32],[153,47,92,35,"tag"],[153,50,92,38],[153,51,92,39],[154,4,93,0],[154,5,93,1],[155,4,93,1],[155,11,93,1,"_deactivateKeepAwake"],[155,31,93,1],[155,32,93,1,"apply"],[155,37,93,1],[155,44,93,1,"arguments"],[155,53,93,1],[156,2,93,1],[157,2,107,7],[157,11,107,16,"addListener"],[157,22,107,27,"addListener"],[157,23,108,2,"tagOrListener"],[157,36,108,43],[157,38,109,2,"listener"],[157,46,109,30],[157,48,110,21],[158,4,111,2],[159,4,112,2],[159,8,112,6],[159,9,112,7,"ExpoKeepAwake"],[159,22,112,20],[159,23,112,20,"default"],[159,30,112,20],[159,31,112,21,"addListenerForTag"],[159,48,112,38],[159,50,112,40],[160,6,113,4],[160,12,113,10],[160,16,113,14,"UnavailabilityError"],[160,32,113,33],[160,33,113,33,"UnavailabilityError"],[160,52,113,33],[160,53,113,34],[160,68,113,49],[160,70,113,51],[160,89,113,70],[160,90,113,71],[161,4,114,2],[162,4,116,2],[162,8,116,8,"tag"],[162,11,116,11],[162,14,116,14],[162,21,116,21,"tagOrListener"],[162,34,116,34],[162,39,116,39],[162,47,116,47],[162,50,116,50,"tagOrListener"],[162,63,116,63],[162,66,116,66,"ExpoKeepAwakeTag"],[162,82,116,82],[163,4,117,2],[163,8,117,8,"_listener"],[163,17,117,17],[163,20,117,20],[163,27,117,27,"tagOrListener"],[163,40,117,40],[163,45,117,45],[163,55,117,55],[163,58,117,58,"tagOrListener"],[163,71,117,71],[163,74,117,74,"listener"],[163,82,117,82],[164,4,119,2],[164,11,119,9,"ExpoKeepAwake"],[164,24,119,22],[164,25,119,22,"default"],[164,32,119,22],[164,33,119,23,"addListenerForTag"],[164,50,119,40],[164,51,119,41,"tag"],[164,54,119,44],[164,56,119,46,"_listener"],[164,65,119,55],[164,66,119,56],[165,2,120,0],[166,0,120,1],[166,3]],"functionMap":{"names":["<global>","isAvailableAsync","useKeepAwake","useEffect$argument_0","activateKeepAwakeAsync.then$argument_0","<anonymous>","deactivateKeepAwake._catch$argument_0","activateKeepAwake","activateKeepAwakeAsync","deactivateKeepAwake","addListener"],"mappings":"AAA;OCU;CDK;OEW;YCI;8CCE;KDI;WEC;gDCG,QD;KFI;GDC;CFC;OOe;CPG;OQc;CRE;OSU;CTE;OUc;CVa"},"hasCjsExports":false},"type":"js/module"}]} |