diff options
Diffstat (limited to 'ext/webidl/00_webidl.js')
-rw-r--r-- | ext/webidl/00_webidl.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/webidl/00_webidl.js b/ext/webidl/00_webidl.js index b1a2902f8..6cf2c5f8c 100644 --- a/ext/webidl/00_webidl.js +++ b/ext/webidl/00_webidl.js @@ -8,6 +8,12 @@ import { core, primordials } from "ext:core/mod.js"; const { + isArrayBuffer, + isDataView, + isSharedArrayBuffer, + isTypedArray, +} = core; +const { ArrayBufferIsView, ArrayPrototypeForEach, ArrayPrototypePush, @@ -80,12 +86,6 @@ const { Uint8Array, Uint8ClampedArray, } = primordials; -const { - isArrayBuffer, - isDataView, - isSharedArrayBuffer, - isTypedArray, -} = core; function makeException(ErrorType, message, prefix, context) { return new ErrorType( |