diff --git a/cjs/dist/helpers.js b/cjs/dist/helpers.js index ea41865..6d9a499 100644 --- a/cjs/dist/helpers.js +++ b/cjs/dist/helpers.js @@ -1,6 +1,7 @@ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.randomInt = exports.randomBytes = exports.hmac = exports.hash = exports.ab2hex = exports.encoder = void 0; +// @denoify-line-ignore require("./crypto.js"); exports.encoder = new TextEncoder(); function ab2hex(ab) { diff --git a/deno_dist/helpers.ts b/deno_dist/helpers.ts index 9eaf36b..422920a 100644 --- a/deno_dist/helpers.ts +++ b/deno_dist/helpers.ts @@ -1,4 +1,3 @@ -import './crypto.ts'; import type { Algorithm } from './types.ts'; export const encoder = new TextEncoder(); diff --git a/dist/helpers.js b/dist/helpers.js index 10ff6df..0acc591 100644 --- a/dist/helpers.js +++ b/dist/helpers.js @@ -1,3 +1,4 @@ +// @denoify-line-ignore import './crypto.js'; export const encoder = new TextEncoder(); export function ab2hex(ab) { diff --git a/lib/helpers.ts b/lib/helpers.ts index a494620..3fba815 100644 --- a/lib/helpers.ts +++ b/lib/helpers.ts @@ -1,3 +1,4 @@ +// @denoify-line-ignore import './crypto.js'; import type { Algorithm } from './types.js';