]> zoso.dev Git - libnemo.git/commitdiff
Whitespace.
authorChris Duncan <chris@zoso.dev>
Sat, 4 Jan 2025 07:37:22 +0000 (23:37 -0800)
committerChris Duncan <chris@zoso.dev>
Sat, 4 Jan 2025 07:37:22 +0000 (23:37 -0800)
GLOBALS.mjs
src/lib/blake2b.ts

index 475d8de7648dfcaed5222f8bbe7ce5110e2e8abc..0b02fc92adac9b584d3eaa9a8d5f1a3238536b49 100644 (file)
@@ -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')
 
index d80ef22008a06b43e603cad6f7385fa14a3717ca..620be071d8d1c9c6b6523201195a6cdcae7a6452 100644 (file)
@@ -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)