diff options
author | Luca Casonato <hello@lcas.dev> | 2021-07-05 12:18:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-05 12:18:41 +0200 |
commit | 3ee0c36453a2591139b7e35882e04c1e706e9253 (patch) | |
tree | ddce3758ee3f7ab70103efc997ba9f6bde242bbe /core/00_primordials.js | |
parent | c4cc353d594edae121fd1e8fcd5c85d4ae0d0988 (diff) |
refactor: introduce primordials for web/streams (#11251)
Diffstat (limited to 'core/00_primordials.js')
-rw-r--r-- | core/00_primordials.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/00_primordials.js b/core/00_primordials.js index 63b6730db..c6132620e 100644 --- a/core/00_primordials.js +++ b/core/00_primordials.js @@ -170,6 +170,9 @@ // Create copy of isNaN primordials[isNaN.name] = isNaN; + // Create copy of queueMicrotask + primordials["queueMicrotask"] = queueMicrotask; + // Create copies of URI handling functions [ decodeURI, |