Sha256: 63c1666da3d7b113236c84988868db4da905ef25b92100e8222e6030c20498f6

Contents?: true

Size: 1.73 KB

Versions: 11

Compression:

Stored size: 1.73 KB

Contents

'use strict';

const {sep} = require('path');
const {platform} = process;

exports.EV_ALL = 'all';
exports.EV_READY = 'ready';
exports.EV_ADD = 'add';
exports.EV_CHANGE = 'change';
exports.EV_ADD_DIR = 'addDir';
exports.EV_UNLINK = 'unlink';
exports.EV_UNLINK_DIR = 'unlinkDir';
exports.EV_RAW = 'raw';
exports.EV_ERROR = 'error';

exports.STR_DATA = 'data';
exports.STR_END = 'end';
exports.STR_CLOSE = 'close';

exports.FSEVENT_CREATED = 'created';
exports.FSEVENT_MODIFIED = 'modified';
exports.FSEVENT_DELETED = 'deleted';
exports.FSEVENT_MOVED = 'moved';
exports.FSEVENT_CLONED = 'cloned';
exports.FSEVENT_UNKNOWN = 'unknown';
exports.FSEVENT_TYPE_FILE = 'file';
exports.FSEVENT_TYPE_DIRECTORY = 'directory';
exports.FSEVENT_TYPE_SYMLINK = 'symlink';

exports.KEY_LISTENERS = 'listeners';
exports.KEY_ERR = 'errHandlers';
exports.KEY_RAW = 'rawEmitters';
exports.HANDLER_KEYS = [exports.KEY_LISTENERS, exports.KEY_ERR, exports.KEY_RAW];

exports.DOT_SLASH = `.${sep}`;

exports.BACK_SLASH_RE = /\\/g;
exports.DOUBLE_SLASH_RE = /\/\//;
exports.SLASH_OR_BACK_SLASH_RE = /[/\\]/;
exports.DOT_RE = /\..*\.(sw[px])$|~$|\.subl.*\.tmp/;
exports.REPLACER_RE = /^\.[/\\]/;

exports.SLASH = '/';
exports.SLASH_SLASH = '//';
exports.BRACE_START = '{';
exports.BANG = '!';
exports.ONE_DOT = '.';
exports.TWO_DOTS = '..';
exports.STAR = '*';
exports.GLOBSTAR = '**';
exports.ROOT_GLOBSTAR = '/**/*';
exports.SLASH_GLOBSTAR = '/**';
exports.DIR_SUFFIX = 'Dir';
exports.ANYMATCH_OPTS = {dot: true};
exports.STRING_TYPE = 'string';
exports.FUNCTION_TYPE = 'function';
exports.EMPTY_STR = '';
exports.EMPTY_FN = () => {};
exports.IDENTITY_FN = val => val;

exports.isWindows = platform === 'win32';
exports.isMacos = platform === 'darwin';
exports.isLinux = platform === 'linux';

Version data entries

11 entries across 9 versions & 5 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/watchpack/node_modules/chokidar/lib/constants.js
optimacms-0.1.61 spec/dummy/node_modules/sass/node_modules/chokidar/lib/constants.js
epuber-stylus-source-0.54.8 vendor/node_modules/chokidar/lib/constants.js
tang-0.2.1 spec/tang_app/node_modules/watchpack/node_modules/chokidar/lib/constants.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/watchpack/node_modules/chokidar/lib/constants.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/watchpack/node_modules/chokidar/lib/constants.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/watchpack/node_modules/chokidar/lib/constants.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/watchpack/node_modules/chokidar/lib/constants.js
tang-0.2.0 spec/tang_app/node_modules/watchpack/node_modules/chokidar/lib/constants.js
tang-0.1.0 spec/tang_app/node_modules/watchpack/node_modules/chokidar/lib/constants.js
tang-0.0.9 spec/tang_app/node_modules/watchpack/node_modules/chokidar/lib/constants.js