UNPKG

@visulima/fs

Version:

Human friendly file system utilities for Node.js

18 lines (14 loc) 512 B
'use strict'; Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } }); const F_OK = 0; const R_OK = 4; const W_OK = 2; const X_OK = 1; const FIND_UP_STOP = Symbol("findUpStop"); const INTERNAL_STRIP_JSON_REGEX = /"(?:[^"\\]|\\.)*"|\/\/[^\r\n]*|\/\*(?:[^*]|\*[^/])*\*\//g; exports.FIND_UP_STOP = FIND_UP_STOP; exports.F_OK = F_OK; exports.INTERNAL_STRIP_JSON_REGEX = INTERNAL_STRIP_JSON_REGEX; exports.R_OK = R_OK; exports.W_OK = W_OK; exports.X_OK = X_OK;