From a5ab317cadd370aa4c744f7895c615ece5d2a7dc Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Fri, 3 Jan 2025 23:37:22 -0800 Subject: [PATCH] Whitespace. --- GLOBALS.mjs | 5 ++--- src/lib/blake2b.ts | 1 - 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/GLOBALS.mjs b/GLOBALS.mjs index 475d8de..0b02fc9 100644 --- a/GLOBALS.mjs +++ b/GLOBALS.mjs @@ -42,7 +42,6 @@ function pass (...args) { console.log(`%cPASS `, 'color:green', ...args) } - /** * Who watches the watchers? */ @@ -58,7 +57,7 @@ await suite('TEST RUNNER CHECK', async () => { console.assert(failures.some(call => /.*promise should fail.*/.test(call[0])) === true, `bad promise not errored`) console.assert(passes.some(call => /.*promise should fail.*/.test(call[0])) === false, 'bad promise logged') - await test('async should pass', async () => {}) + await test('async should pass', async () => { }) console.assert(failures.some(call => /.*async should pass.*/.test(call[0])) === false, 'good async errored') console.assert(passes.some(call => /.*async should pass.*/.test(call[0])) === true, 'good async not logged') @@ -66,7 +65,7 @@ await suite('TEST RUNNER CHECK', async () => { console.assert(failures.some(call => /.*async should fail.*/.test(call[0])) === true, 'bad async not errored') console.assert(passes.some(call => /.*async should fail.*/.test(call[0])) === false, 'bad async logged') - await test('function should pass', () => {}) + await test('function should pass', () => { }) console.assert(failures.some(call => /.*function should pass.*/.test(call[0])) === false, 'good function errored') console.assert(passes.some(call => /.*function should pass.*/.test(call[0])) === true, 'good function not logged') diff --git a/src/lib/blake2b.ts b/src/lib/blake2b.ts index d80ef22..620be07 100644 --- a/src/lib/blake2b.ts +++ b/src/lib/blake2b.ts @@ -69,7 +69,6 @@ export class Blake2b { 0, 0, 0, 0 // 60: personal ]) - static v: Uint32Array = new Uint32Array(32) static m: Uint32Array = new Uint32Array(32) -- 2.34.1