From d76bc2ce248c14deb07d0b3ee03be3429f030e56 Mon Sep 17 00:00:00 2001 From: Filip Skokan Date: Mon, 11 Oct 2021 18:55:10 +0200 Subject: [PATCH] refactor: src/runtime/node/random.ts --- src/runtime/node/random.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/runtime/node/random.ts b/src/runtime/node/random.ts index 3e03b3be..15f1a020 100644 --- a/src/runtime/node/random.ts +++ b/src/runtime/node/random.ts @@ -1,3 +1 @@ -import { randomFillSync } from 'crypto' - -export default randomFillSync +export { randomFillSync as default } from 'crypto'