AK-21/Graphite-Industrial-Intelligence
0
1# fs-constants2 3Small module that allows you to get the fs constants across4Node and the browser. 5 6```7npm install fs-constants8```9 10Previously you would use `require('constants')` for this in node but that has been11deprecated and changed to `require('fs').constants` which does not browserify.12 13This module uses `require('constants')` in the browser and `require('fs').constants` in node to work around this14 15 16## Usage17 18``` js19var constants = require('fs-constants')20 21console.log('constants:', constants)22```23 24## License25 26MIT27 