diff options
author | Luca Casonato <hello@lcas.dev> | 2021-07-02 16:37:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-02 16:37:41 +0200 |
commit | 4ae50f5c067bf450b6287aaafd94b458ca8ecea7 (patch) | |
tree | 83895b5a1b0fe944da9a5199ede6115ccefdec36 /core/00_primordials.js | |
parent | 68b4d60fd744de0717f56d8a8f4735a149d3c681 (diff) |
refactor: use primordials for extensions/webidl (#11227)
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 85d924a00..63b6730db 100644 --- a/core/00_primordials.js +++ b/core/00_primordials.js @@ -167,6 +167,9 @@ primordials[name] = globalThis[name]; }); + // Create copy of isNaN + primordials[isNaN.name] = isNaN; + // Create copies of URI handling functions [ decodeURI, |