repeat-string
Repeat the given string n times. Fastest implementation for repeating a string.
Updated by @jonschlinkert
array-unique
Remove duplicate values from an array. Fastest ES5 implementation.
Updated by @jonschlinkert
split-string
Easy way to split a string on a given character unless it's quoted or escaped.
Updated by @doowb
for-in
Iterate over the own and inherited enumerable properties of an object, and return an object with properties that evaluate to true from the callback. Exit early by returning …
Updated by @jonschlinkert
expand-brackets
Expand POSIX bracket expressions (character classes) in glob patterns.
Updated by @danez
collection-visit
Visit a method over the items in an object, or map visit over the objects in an array.
Updated by @doowb
define-property
Define a non-enumerable property on an object. Uses Reflect.defineProperty when available, otherwise Object.defineProperty.
Updated by @doowb
expand-tilde
Bash-like tilde expansion for node.js. Expands a leading tilde in a file path to the user home directory, or `~+` to the cwd.
Updated by @doowb
is-absolute
Returns 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`.
Updated by @doowb
remarkable
Markdown parser, done right. 100% Commonmark support, extensions, syntax plugins, high speed - all in one.
Updated by @doowb
window-size
Reliable way to get the height and width of terminal/console, since it's not calculated or updated the same way on all platforms, environments and node.js versions.
Updated by @doowb