This commit is contained in:
Will Scullin 2020-11-08 12:26:12 -08:00
parent f600f7c6b4
commit c3befc896a
No known key found for this signature in database
GPG Key ID: 9092A5C0A673416B
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
/**