From 1cde390c23f2668a3777752632c48febd10a28ee Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Mon, 14 Jun 2021 16:08:58 +0200 Subject: fix up imports, no more esm in tests --- packages/taler-wallet-core/src/crypto/primitives/kdf.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'packages/taler-wallet-core/src/crypto/primitives') diff --git a/packages/taler-wallet-core/src/crypto/primitives/kdf.ts b/packages/taler-wallet-core/src/crypto/primitives/kdf.ts index edc681bc1..af4d05035 100644 --- a/packages/taler-wallet-core/src/crypto/primitives/kdf.ts +++ b/packages/taler-wallet-core/src/crypto/primitives/kdf.ts @@ -14,8 +14,8 @@ GNU Taler; see the file COPYING. If not, see */ -import * as nacl from "./nacl-fast"; -import { sha256 } from "./sha256"; +import * as nacl from "./nacl-fast.js"; +import { sha256 } from "./sha256.js"; export function sha512(data: Uint8Array): Uint8Array { return nacl.hash(data); -- cgit v1.2.3