[ICO]NameLast modifiedSizeDescription
[PARENTDIR]Parent Directory  -  
[   ]LICENSE2017-12-31 23:56 1.1K 
[TXT]README.md2018-04-26 14:40 528 d7c1522 post receive test [كارل مبارك]
[   ]browser.js2018-04-26 14:37 38  
[   ]index.js2018-04-26 14:36 65  
[   ]package.json2023-06-15 18:21 1.3K 
# 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