diff options
author | Satya Rohith <me@satyarohith.com> | 2021-07-06 15:02:59 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-06 11:32:59 +0200 |
commit | ab6b0cefd36f4a2530267c03683e1db1a1b81838 (patch) | |
tree | b625b0bc87148830e266e640a29142402a9b934c /extensions/fetch/01_fetch_util.js | |
parent | e8258e0210c4690a1fbbcefe0e6a859da8efc19b (diff) |
refactor: use primordials in extensions/fetch (#11266)
Diffstat (limited to 'extensions/fetch/01_fetch_util.js')
-rw-r--r-- | extensions/fetch/01_fetch_util.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/extensions/fetch/01_fetch_util.js b/extensions/fetch/01_fetch_util.js index ff76421a1..9cf19588b 100644 --- a/extensions/fetch/01_fetch_util.js +++ b/extensions/fetch/01_fetch_util.js @@ -2,6 +2,7 @@ "use strict"; ((window) => { + const { TypeError } = window.__bootstrap.primordials; function requiredArguments( name, length, |