@bablr/fs 2.0.0 → 2.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -7,9 +7,7 @@ This package offers fast, responsive, efficient access to the filesystem. Node's
7
7
  ```js
8
8
  import { readFile, readDir, decodeUTF8 } from '@bablr/fs';
9
9
 
10
- let fileIterable = decodeUTF8(
11
- readFile(import.meta.url, 'utf8'),
12
- );
10
+ let fileIterable = decodeUTF8(readFile(import.meta.url));
13
11
  let directoryIterable = readDir('./');
14
12
  ```
15
13
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bablr/fs",
3
3
  "description": "A Node.js filesystem access library using stream iterators",
4
- "version": "2.0.0",
4
+ "version": "2.0.1",
5
5
  "author": "Conrad Buck<conartist6@gmail.com>",
6
6
  "type": "module",
7
7
  "files": [