fix: init

This commit is contained in:
2024-05-09 17:21:15 -05:00
commit e0cf34f420
17 changed files with 1613 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
import Stream from 'stream'
/** @type {(a: Array<unknown>) => Stream.Readable}*/
export const readableFromArray = a => Stream.Readable.from(a)