constants.js 258 B

1234567891011121314
  1. const constants = { // just for envs without fs
  2. S_IFMT: 61440,
  3. S_IFDIR: 16384,
  4. S_IFCHR: 8192,
  5. S_IFBLK: 24576,
  6. S_IFIFO: 4096,
  7. S_IFLNK: 40960
  8. }
  9. try {
  10. module.exports = require('fs').constants || constants
  11. } catch {
  12. module.exports = constants
  13. }