pwd-fs 2.4.1 → 2.4.2
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.
- package/package.json +1 -1
- package/readme.md +2 -2
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -37,7 +37,7 @@ npm i pwd-fs
|
|
|
37
37
|
* [pfs.remove(src[, options])](#pfsremovesrc-options)
|
|
38
38
|
* [pfs.read(src[, options])](#pfsreadsrc-options)
|
|
39
39
|
* [pfs.write(src, data[, options])](#pfswritesrc-data-options)
|
|
40
|
-
* [pfs.append(src, data[, options])](#pfsappendsrc-data-options-
|
|
40
|
+
* [pfs.append(src, data[, options])](#pfsappendsrc-data-options-deprecated) `deprecated`
|
|
41
41
|
* [pfs.readdir(dir[, options])](#pfsreaddirdir-options)
|
|
42
42
|
* [pfs.mkdir(dir[, options])](#pfsmkdirdir-options)
|
|
43
43
|
* [pfs.pwd](#pfspwd)
|
|
@@ -269,7 +269,7 @@ await pfs.write('./file.txt', '... some text');
|
|
|
269
269
|
|
|
270
270
|
> This function is limited to writing only `string`. For `stream`, `fs.createWriteStream()` is recommended.
|
|
271
271
|
|
|
272
|
-
#### pfs.append(src, data[, options])
|
|
272
|
+
#### pfs.append(src, data[, options]) `deprecated`
|
|
273
273
|
|
|
274
274
|
|
|
275
275
|
- `src` <[String](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String)> Absolute or relative path to the resource in the file system. Relative paths will be resolved relative to the present working directory as specified by `pfs.pwd`.
|