Skip to content

Commit

Permalink
fix deno_dist
Browse files Browse the repository at this point in the history
  • Loading branch information
ovx committed Apr 6, 2024
1 parent 281380a commit 1c57d2a
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions cjs/dist/helpers.js
Original file line number Diff line number Diff line change
@@ -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) {
Expand Down
1 change: 0 additions & 1 deletion deno_dist/helpers.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import './crypto.ts';
import type { Algorithm } from './types.ts';

export const encoder = new TextEncoder();
Expand Down
1 change: 1 addition & 0 deletions dist/helpers.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// @denoify-line-ignore
import './crypto.js';
export const encoder = new TextEncoder();
export function ab2hex(ab) {
Expand Down
1 change: 1 addition & 0 deletions lib/helpers.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// @denoify-line-ignore
import './crypto.js';
import type { Algorithm } from './types.js';

Expand Down

0 comments on commit 1c57d2a

Please sign in to comment.