From dc69556c567e9e5806fd26afd723f7142d89dd7b Mon Sep 17 00:00:00 2001 From: ocavue Date: Sat, 10 Feb 2024 00:52:08 +0800 Subject: [PATCH] utils: fix ESM import --- src/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.ts b/src/utils.ts index a7e8a7d..08d0aff 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -1,5 +1,5 @@ /*! noble-ciphers - MIT License (c) 2023 Paul Miller (paulmillr.com) */ -import { bytes as abytes, isBytes } from './_assert'; +import { bytes as abytes, isBytes } from './_assert.js'; // prettier-ignore export type TypedArray = Int8Array | Uint8ClampedArray | Uint8Array | Uint16Array | Int16Array | Uint32Array | Int32Array;