streaming zip archiver/extractor jsr.io/@mary/zip
typescript jsr
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: add module overview

mary.my.id 3ec2eb8e 7c2f496f

verified
+10
+5
lib/reader/deno.ts
··· 1 + /** 2 + * @module 3 + * This module contains Deno-specific functions 4 + */ 5 + 1 6 import Mutex from '@mary/mutex'; 2 7 3 8 import type { Reader } from './types.ts';
+5
lib/reader/node.ts
··· 1 + /** 2 + * @module 3 + * This module contains Node.js-specific functions 4 + */ 5 + 1 6 import type { FileHandle } from 'node:fs/promises'; 2 7 3 8 import type { Reader } from './types.ts';