yeet
This commit is contained in:
4
node_modules/expo/build/timer/polyfillNextTick.d.ts
generated
vendored
Normal file
4
node_modules/expo/build/timer/polyfillNextTick.d.ts
generated
vendored
Normal 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
10
node_modules/expo/build/timer/polyfillNextTick.js
generated
vendored
Normal 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
|
1
node_modules/expo/build/timer/polyfillNextTick.js.map
generated
vendored
Normal file
1
node_modules/expo/build/timer/polyfillNextTick.js.map
generated
vendored
Normal 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"]}
|
Reference in New Issue
Block a user