updating lint, format, and CI

This commit is contained in:
Luke Hagar
2025-03-19 23:08:52 -05:00
parent e6b03d05fe
commit 156308d124
3080 changed files with 413391 additions and 387 deletions

11
node_modules/fastq/example.mjs generated vendored Normal file
View File

@@ -0,0 +1,11 @@
import { promise as queueAsPromised } from './queue.js'
/* eslint-disable */
const queue = queueAsPromised(worker, 1)
console.log('the result is', await queue.push(42))
async function worker (arg) {
return 42 * 2
}