diff options
Diffstat (limited to 'ext/web/05_base64.js')
-rw-r--r-- | ext/web/05_base64.js | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/ext/web/05_base64.js b/ext/web/05_base64.js index 335cd041c..02eefdaef 100644 --- a/ext/web/05_base64.js +++ b/ext/web/05_base64.js @@ -6,11 +6,8 @@ /// <reference path="../web/internal.d.ts" /> /// <reference lib="esnext" /> -import { core, primordials } from "ext:core/mod.js"; -const { - op_base64_atob, - op_base64_btoa, -} = core.ensureFastOps(); +import { primordials } from "ext:core/mod.js"; +import { op_base64_atob, op_base64_btoa } from "ext:core/ops"; const { ObjectPrototypeIsPrototypeOf, TypeErrorPrototype, |