This commit is contained in:
Yamozha
2021-04-02 02:24:13 +03:00
parent c23950b545
commit 7256d79e2c
31493 changed files with 3036630 additions and 0 deletions

4
node_modules/expo/build/timer/polyfillNextTick.d.ts generated vendored Normal file
View File

@ -0,0 +1,4 @@
/**
* Defines a small polyfill for process.nextTick. Eventually we'd like to replace this polyfill with
* a native implementation with the correct timing semantics.
*/

10
node_modules/expo/build/timer/polyfillNextTick.js generated vendored Normal file
View File

@ -0,0 +1,10 @@
/**
* Defines a small polyfill for process.nextTick. Eventually we'd like to replace this polyfill with
* a native implementation with the correct timing semantics.
*/
if (!process.nextTick) {
process.nextTick = (callback, ...args) => {
setTimeout(() => callback(...args), 0);
};
}
//# sourceMappingURL=polyfillNextTick.js.map

View File

@ -0,0 +1 @@
{"version":3,"file":"polyfillNextTick.js","sourceRoot":"","sources":["../../src/timer/polyfillNextTick.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE;IACrB,OAAO,CAAC,QAAQ,GAAG,CAAC,QAAQ,EAAE,GAAG,IAAI,EAAE,EAAE;QACvC,UAAU,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC;IACzC,CAAC,CAAC;CACH","sourcesContent":["/**\n * Defines a small polyfill for process.nextTick. Eventually we'd like to replace this polyfill with\n * a native implementation with the correct timing semantics.\n */\n\nif (!process.nextTick) {\n process.nextTick = (callback, ...args) => {\n setTimeout(() => callback(...args), 0);\n };\n}\n"]}