[ICO]NameLast modifiedSizeDescription
[PARENTDIR]Parent Directory  -  
[   ]package.json2025-10-29 15:57 513  
[   ]browser.js2025-10-29 15:57 38  
[   ]index.js2025-10-29 15:57 65  
[   ]LICENSE2025-10-29 15:57 1.1K 
[TXT]README.md2025-10-29 15:57 528 38d15e7 removed strapi.query from api controllers to repair migration on dev server? [كارل مبارك]
# 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