From c3befc896af564139a055670c73a0ea1b4798e8e Mon Sep 17 00:00:00 2001 From: Will Scullin Date: Sun, 8 Nov 2020 12:26:12 -0800 Subject: [PATCH] fix typo --- js/util.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/util.ts b/js/util.ts index 0a98bd0..fc701d9 100644 --- a/js/util.ts +++ b/js/util.ts @@ -66,7 +66,7 @@ export function bytify(ary: number[]): memory { /** Writes to the console. */ export function debug(...args: any[]): void { - console.log.apply(console, ...args); + console.log.apply(console, args); } /**