LiST
LiST
If I want to return strings (because they're relative to the cwd) and ensure they are all files, then is the code ```javascript for (const dirent of fs.globSync('**', { cwd:...
```js const spyfs = require( 'spyfs' ); const sfs = spyfs.spy( fs, action => { console.log( action ); } ); const fd = sfs.openSync( __filename, 'r' ); sfs.closeSync( fd );...
zod version: 3.25.7
zod version: 3.25.7
```ts let i = zod.function().args(zod.string().optional()); i.parameters().parse([]); // ZodError: too_small ``` When a string is defined as optional, inputting an empty array ([]) should be considered valid. Is this the expected...