define-data-property • 1.1.4Define a data property on an object. Will fall back to assignment in an engine without descriptors.
INDIRECT
8
define-properties • 1.2.1Define multiple non-enumerable properties at once. Uses `Object.defineProperty` when available; falls back to standard assignment in older engines.
INDIRECT
11
duplexify • 3.7.1Turn a writable and readable stream into a streams2 duplex stream with support for async initialization and streams1/streams2 input
INDIRECT
12
end-of-stream • 1.4.4Call a callback when a readable/writable/duplex stream has completed or failed.
gopd • 1.0.1`Object.getOwnPropertyDescriptor`, but accounts for IE's broken implementation.
INDIRECT
6
has-property-descriptors • 1.0.2Does the environment have full property descriptor support? Handles IE 8's broken defineProperty/gOPD.
INDIRECT
7
has-proto • 1.0.3Does this environment have the ability to get the [[Prototype]] of an object on creation with `__proto__`?
INDIRECT
0
has-symbols • 1.0.3Determine if the JS environment has Symbol support. Supports spec, or shams.
INDIRECT
0
hasown • 2.0.2A robust, ES3 compatible, "has own property" predicate.
INDIRECT
1
is-absolute • 1.0.0Returns true if a file path is absolute. Does not rely on the path module and can be used as a polyfill for node.js native `path.isAbolute`.
is-glob • 3.1.0Returns `true` if the given string looks like a glob pattern or an extglob pattern. This makes it easy to create code that only uses external modules like node-glob when necessary, resulting in much faster code execution and initialization time, and a bet
INDIRECT
1
is-negated-glob • 1.0.0Returns an object with a `negated` boolean and the `!` stripped from negation patterns. Also respects extglobs.
json-stable-stringify-without-jsonify • 1.0.1deterministic JSON.stringify() with custom sorting to get deterministic hashes from stringified results, with no public domain dependencies
normalize-path • 2.1.1Normalize file path slashes to be unix-like forward slashes. Also condenses repeat slashes to a single slash and removes and trailing slashes unless disabled.
INDIRECT
1
now-and-later • 2.0.1Map over an array or object of values in parallel or series, passing each through the async iterator, with optional lifecycle hooks.
INDIRECT
2
object-keys • 1.1.1An Object.keys replacement, in case Object.keys is not available. From https://github.com/es-shims/es5-shim
INDIRECT
0
object.assign • 4.1.5ES6 spec-compliant Object.assign shim. From https://github.com/es-shims/es6-shim
unc-path-regex • 0.1.2Regular expression for testing if a file path is a windows UNC file path. Can also be used as a component of another regexp via the `.source` property.
INDIRECT
0
unique-stream • 2.3.1node.js through stream that emits a unique stream of objects based on criteria