Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKat Marchán <kzm@zkat.tech>2019-02-14 22:19:20 +0300
committerKat Marchán <kzm@zkat.tech>2019-02-19 01:32:16 +0300
commitdd90c433ea71303431e20e098be71d014e2bf174 (patch)
treefdd6341a88b2e21499897eaef60c1bbdf148eaf0 /node_modules/fs-constants/README.md
parent86f5bdb91f7a5971953a5171d32d6eeda6a2e972 (diff)
tar-stream@2.0.0
Diffstat (limited to 'node_modules/fs-constants/README.md')
-rw-r--r--node_modules/fs-constants/README.md26
1 files changed, 26 insertions, 0 deletions
diff --git a/node_modules/fs-constants/README.md b/node_modules/fs-constants/README.md
new file mode 100644
index 000000000..62b33742e
--- /dev/null
+++ b/node_modules/fs-constants/README.md
@@ -0,0 +1,26 @@
+# fs-constants
+
+Small module that allows you to get the fs constants across
+Node and the browser.
+
+```
+npm install fs-constants
+```
+
+Previously you would use `require('constants')` for this in node but that has been
+deprecated and changed to `require('fs').constants` which does not browserify.
+
+This module uses `require('constants')` in the browser and `require('fs').constants` in node to work around this
+
+
+## Usage
+
+``` js
+var constants = require('fs-constants')
+
+console.log('constants:', constants)
+```
+
+## License
+
+MIT