Introduction
This is a cross documentation of lodash and underscore.js. This arose from my need to translate some underscore.js code, and I noticed that there was no place that aggregated the docs together. This does not attempt to prescribe one nor the other as the library of choice, as there is plenty of discussion of that already. As of the date of writing, this uses lodash 4.17.2 and underscore 1.8.3. Freely use for your own benefit (risk).
Table of Contents
Array
_.chunk
_.compact
_.concat
_.difference
_.differenceBy
_.differenceWith
_.drop
_.dropRight
_.dropRightWhile
_.dropWhile
_.fill
_.findIndex
_.findLastIndex
_.first
->head
_.flatten
_.flattenDeep
_.flattenDepth
_.fromPairs
_.head
_.indexOf
_.initial
_.intersection
_.intersectionBy
_.intersectionWith
_.join
_.last
_.lastIndexOf
_.nth
_.pull
_.pullAll
_.pullAllBy
_.pullAllWith
_.pullAt
_.remove
_.reverse
_.slice
_.sortedIndex
_.sortedIndexBy
_.sortedIndexOf
_.sortedLastIndex
_.sortedLastIndexBy
_.sortedLastIndexOf
_.sortedUniq
_.sortedUniqBy
_.tail
_.take
_.takeRight
_.takeRightWhile
_.takeWhile
_.union
_.unionBy
_.unionWith
_.uniq
_.uniqBy
_.uniqWith
_.unzip
_.unzipWith
_.without
_.xor
_.xorBy
_.xorWith
_.zip
_.zipObject
_.zipObjectDeep
_.zipWith
Collection
_.countBy
_.each
->forEach
_.eachRight
->forEachRight
_.every
_.filter
_.find
_.findLast
_.flatMap
_.flatMapDeep
_.flatMapDepth
_.forEach
_.forEachRight
_.groupBy
_.includes
_.invokeMap
_.keyBy
_.map
_.orderBy
_.partition
_.reduce
_.reduceRight
_.reject
_.sample
_.sampleSize
_.shuffle
_.size
_.some
_.sortBy
Date
Function
_.after
_.ary
_.before
_.bind
_.bindKey
_.curry
_.curryRight
_.debounce
_.defer
_.delay
_.flip
_.memoize
_.negate
_.once
_.overArgs
_.partial
_.partialRight
_.rearg
_.rest
_.spread
_.throttle
_.unary
_.wrap
Lang
_.castArray
_.clone
_.cloneDeep
_.cloneDeepWith
_.cloneWith
_.conformsTo
_.eq
_.gt
_.gte
_.isArguments
_.isArray
_.isArrayBuffer
_.isArrayLike
_.isArrayLikeObject
_.isBoolean
_.isBuffer
_.isDate
_.isElement
_.isEmpty
_.isEqual
_.isEqualWith
_.isError
_.isFinite
_.isFunction
_.isInteger
_.isLength
_.isMap
_.isMatch
_.isMatchWith
_.isNaN
_.isNative
_.isNil
_.isNull
_.isNumber
_.isObject
_.isObjectLike
_.isPlainObject
_.isRegExp
_.isSafeInteger
_.isSet
_.isString
_.isSymbol
_.isTypedArray
_.isUndefined
_.isWeakMap
_.isWeakSet
_.lt
_.lte
_.toArray
_.toFinite
_.toInteger
_.toLength
_.toNumber
_.toPlainObject
_.toSafeInteger
_.toString
Math
_.add
_.ceil
_.divide
_.floor
_.max
_.maxBy
_.mean
_.meanBy
_.min
_.minBy
_.multiply
_.round
_.subtract
_.sum
_.sumBy
Number
Object
_.assign
_.assignIn
_.assignInWith
_.assignWith
_.at
_.create
_.defaults
_.defaultsDeep
_.entries
->toPairs
_.entriesIn
->toPairsIn
_.extend
->assignIn
_.extendWith
->assignInWith
_.findKey
_.findLastKey
_.forIn
_.forInRight
_.forOwn
_.forOwnRight
_.functions
_.functionsIn
_.get
_.has
_.hasIn
_.invert
_.invertBy
_.invoke
_.keys
_.keysIn
_.mapKeys
_.mapValues
_.merge
_.mergeWith
_.omit
_.omitBy
_.pick
_.pickBy
_.result
_.set
_.setWith
_.toPairs
_.toPairsIn
_.transform
_.unset
_.update
_.updateWith
_.values
_.valuesIn
Seq
_
_.chain
_.tap
_.thru
_.prototype[Symbol.iterator]
_.prototype.at
_.prototype.chain
_.prototype.commit
_.prototype.next
_.prototype.plant
_.prototype.reverse
_.prototype.toJSON
->value
_.prototype.value
_.prototype.valueOf
->value
String
_.camelCase
_.capitalize
_.deburr
_.endsWith
_.escape
_.escapeRegExp
_.kebabCase
_.lowerCase
_.lowerFirst
_.pad
_.padEnd
_.padStart
_.parseInt
_.repeat
_.replace
_.snakeCase
_.split
_.startCase
_.startsWith
_.template
_.toLower
_.toUpper
_.trim
_.trimEnd
_.trimStart
_.truncate
_.unescape
_.upperCase
_.upperFirst
_.words
Util
_.attempt
_.bindAll
_.cond
_.conforms
_.constant
_.defaultTo
_.flow
_.flowRight
_.identity
_.iteratee
_.matches
_.matchesProperty
_.method
_.methodOf
_.mixin
_.noConflict
_.noop
_.nthArg
_.over
_.overEvery
_.overSome
_.property
_.propertyOf
_.range
_.rangeRight
_.runInContext
_.stubArray
_.stubFalse
_.stubObject
_.stubString
_.stubTrue
_.times
_.toPath
_.uniqueId
Properties
_.VERSION
_.templateSettings
_.templateSettings.escape
_.templateSettings.evaluate
_.templateSettings.imports
_.templateSettings.interpolate
_.templateSettings.variable
Methods
Array
_.chunk(array, [size=1])
Creates an array of elements split into groups the length of size
.
If array
can’t be split evenly, the final chunk will be the remaining
elements.
Underscore
Since
3.0.0
Arguments
array
(Array): The array to process.[size=1]
(number): The length of each chunk
Returns
(Array): Returns the new array of chunks.
_.chunk(['a', 'b', 'c', 'd'], 2);
// => [['a', 'b'], ['c', 'd']]
_.chunk(['a', 'b', 'c', 'd'], 3);
// => [['a', 'b', 'c'], ['d']]
_.compact(array)
_.compact([0, 1, false, 2, '', 3]);
// => [1, 2, 3]
Creates an array with all falsey values removed. The values false
, null
,
0
, ""
, undefined
, and NaN
are falsey.
Underscore
Since
0.1.0
Arguments
array
(Array): The array to compact.
Returns
(Array): Returns the new array of filtered values.
_.concat(array, [values])
var array = [1];
var other = _.concat(array, 2, [3], [[4]]);
console.log(other);
// => [1, 2, 3, [4]]
console.log(array);
// => [1]
Creates a new array concatenating array
with any additional arrays
and/or values.
Underscore
Since
4.0.0
Arguments
array
(Array): The array to concatenate.[values]
(…*): The values to concatenate.
Returns
(Array): Returns the new concatenated array.
_.difference(array, [values])
_.difference([2, 1], [2, 3]);
// => [1]
Creates an array of array
values not included in the other given arrays
using SameValueZero
for equality comparisons. The order and references of result values are
determined by the first array.
Note: Unlike _.pullAll
, this method returns a new array.
Underscore
Since
0.1.0
Arguments
array
(Array): The array to inspect.[values]
(…Array): The values to exclude.
Returns
(Array): Returns the new array of filtered values.
.differenceBy(array, [values], [iteratee=.identity])
_.differenceBy([2.1, 1.2], [2.3, 3.4], Math.floor);
// => [1.2]
// The `_.property` iteratee shorthand.
_.differenceBy([{ 'x': 2 }, { 'x': 1 }], [{ 'x': 1 }], 'x');
// => [{ 'x': 2 }]
This method is like _.difference
except that it accepts iteratee
which
is invoked for each element of array
and values
to generate the criterion
by which they’re compared. The order and references of result values are
determined by the first array. The iteratee is invoked with one argument:
(value).
Note: Unlike _.pullAllBy
, this method returns a new array.
Underscore
Since
4.0.0
Arguments
array
(Array): The array to inspect.[values]
(…Array): The values to exclude.[iteratee=_.identity]
(Function): The iteratee invoked per element.
Returns
(Array): Returns the new array of filtered values.
_.differenceWith(array, [values], [comparator])
var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }];
_.differenceWith(objects, [{ 'x': 1, 'y': 2 }], _.isEqual);
// => [{ 'x': 2, 'y': 1 }]
This method is like _.difference
except that it accepts comparator
which is invoked to compare elements of array
to values
. The order and
references of result values are determined by the first array. The comparator
is invoked with two arguments: (arrVal, othVal).
Note: Unlike _.pullAllWith
, this method returns a new array.
Underscore
Since
4.0.0
Arguments
array
(Array): The array to inspect.[values]
(…Array): The values to exclude.[comparator]
(Function): The comparator invoked per element.
Returns
(Array): Returns the new array of filtered values.
_.drop(array, [n=1])
_.drop([1, 2, 3]);
// => [2, 3]
_.drop([1, 2, 3], 2);
// => [3]
_.drop([1, 2, 3], 5);
// => []
_.drop([1, 2, 3], 0);
// => [1, 2, 3]
Creates a slice of array
with n
elements dropped from the beginning.
Underscore
Since
0.5.0
Arguments
array
(Array): The array to query.[n=1]
(number): The number of elements to drop.
Returns
(Array): Returns the slice of array
.
_.dropRight(array, [n=1])
_.dropRight([1, 2, 3]);
// => [1, 2]
_.dropRight([1, 2, 3], 2);
// => [1]
_.dropRight([1, 2, 3], 5);
// => []
_.dropRight([1, 2, 3], 0);
// => [1, 2, 3]
Creates a slice of array
with n
elements dropped from the end.
Underscore
Since
3.0.0
Arguments
array
(Array): The array to query.[n=1]
(number): The number of elements to drop.
Returns
(Array): Returns the slice of array
.
.dropRightWhile(array, [predicate=.identity])
var users = [
{ 'user': 'barney', 'active': true },
{ 'user': 'fred', 'active': false },
{ 'user': 'pebbles', 'active': false }
];
_.dropRightWhile(users, function(o) { return !o.active; });
// => objects for ['barney']
// The `_.matches` iteratee shorthand.
_.dropRightWhile(users, { 'user': 'pebbles', 'active': false });
// => objects for ['barney', 'fred']
// The `_.matchesProperty` iteratee shorthand.
_.dropRightWhile(users, ['active', false]);
// => objects for ['barney']
// The `_.property` iteratee shorthand.
_.dropRightWhile(users, 'active');
// => objects for ['barney', 'fred', 'pebbles']
Creates a slice of array
excluding elements dropped from the end.
Elements are dropped until predicate
returns falsey. The predicate is
invoked with three arguments: (value, index, array).
Underscore
Since
3.0.0
Arguments
array
(Array): The array to query.[predicate=_.identity]
(Function): The function invoked per iteration.
Returns
(Array): Returns the slice of array
.
.dropWhile(array, [predicate=.identity])
var users = [
{ 'user': 'barney', 'active': false },
{ 'user': 'fred', 'active': false },
{ 'user': 'pebbles', 'active': true }
];
_.dropWhile(users, function(o) { return !o.active; });
// => objects for ['pebbles']
// The `_.matches` iteratee shorthand.
_.dropWhile(users, { 'user': 'barney', 'active': false });
// => objects for ['fred', 'pebbles']
// The `_.matchesProperty` iteratee shorthand.
_.dropWhile(users, ['active', false]);
// => objects for ['pebbles']
// The `_.property` iteratee shorthand.
_.dropWhile(users, 'active');
// => objects for ['barney', 'fred', 'pebbles']
Creates a slice of array
excluding elements dropped from the beginning.
Elements are dropped until predicate
returns falsey. The predicate is
invoked with three arguments: (value, index, array).
Underscore
Since
3.0.0
Arguments
array
(Array): The array to query.[predicate=_.identity]
(Function): The function invoked per iteration.
Returns
(Array): Returns the slice of array
.
_.fill(array, value, [start=0], [end=array.length])
var array = [1, 2, 3];
_.fill(array, 'a');
console.log(array);
// => ['a', 'a', 'a']
_.fill(Array(3), 2);
// => [2, 2, 2]
_.fill([4, 6, 8, 10], '*', 1, 3);
// => [4, '*', '*', 10]
Fills elements of array
with value
from start
up to, but not
including, end
.
Note: This method mutates array
.
Underscore
Since
3.2.0
Arguments
array
(Array): The array to fill.value
(*): The value to fillarray
with.[start=0]
(number): The start position.[end=array.length]
(number): The end position.
Returns
(Array): Returns array
.
.findIndex(array, [predicate=.identity], [fromIndex=0])
var users = [
{ 'user': 'barney', 'active': false },
{ 'user': 'fred', 'active': false },
{ 'user': 'pebbles', 'active': true }
];
_.findIndex(users, function(o) { return o.user == 'barney'; });
// => 0
// The `_.matches` iteratee shorthand.
_.findIndex(users, { 'user': 'fred', 'active': false });
// => 1
// The `_.matchesProperty` iteratee shorthand.
_.findIndex(users, ['active', false]);
// => 0
// The `_.property` iteratee shorthand.
_.findIndex(users, 'active');
// => 2
This method is like _.find
except that it returns the index of the first
element predicate
returns truthy for instead of the element itself.
Underscore
Since
1.1.0
Arguments
array
(Array): The array to inspect.[predicate=_.identity]
(Function): The function invoked per iteration.[fromIndex=0]
(number): The index to search from.
Returns
(number): Returns the index of the found element, else -1
.
.findLastIndex(array, [predicate=.identity], [fromIndex=array.length-1])
var users = [
{ 'user': 'barney', 'active': true },
{ 'user': 'fred', 'active': false },
{ 'user': 'pebbles', 'active': false }
];
_.findLastIndex(users, function(o) { return o.user == 'pebbles'; });
// => 2
// The `_.matches` iteratee shorthand.
_.findLastIndex(users, { 'user': 'barney', 'active': true });
// => 0
// The `_.matchesProperty` iteratee shorthand.
_.findLastIndex(users, ['active', false]);
// => 2
// The `_.property` iteratee shorthand.
_.findLastIndex(users, 'active');
// => 0
This method is like _.findIndex
except that it iterates over elements
of collection
from right to left.
Underscore
Since
2.0.0
Arguments
array
(Array): The array to inspect.[predicate=_.identity]
(Function): The function invoked per iteration.[fromIndex=array.length-1]
(number): The index to search from.
Returns
(number): Returns the index of the found element, else -1
.
_.flatten(array)
_.flatten([1, [2, [3, [4]], 5]]);
// => [1, 2, [3, [4]], 5]
Flattens array
a single level deep.
Underscore
_.flatten(array, [shallow])
Flattens a nested array (the nesting can be to any depth). If you pass shallow, the array will only be flattened a single level.
Since
0.1.0
Arguments
array
(Array): The array to flatten.
Returns
(Array): Returns the new flattened array.
_.flattenDeep(array)
_.flattenDeep([1, [2, [3, [4]], 5]]);
// => [1, 2, 3, 4, 5]
Recursively flattens array
.
Underscore
_.flatten(array, [shallow])
Flattens a nested array (the nesting can be to any depth). If you pass shallow, the array will only be flattened a single level.
Since
3.0.0
Arguments
array
(Array): The array to flatten.
Returns
(Array): Returns the new flattened array.
_.flattenDepth(array, [depth=1])
var array = [1, [2, [3, [4]], 5]];
_.flattenDepth(array, 1);
// => [1, 2, [3, [4]], 5]
_.flattenDepth(array, 2);
// => [1, 2, 3, [4], 5]
Recursively flatten array
up to depth
times.
Underscore
Since
4.4.0
Arguments
array
(Array): The array to flatten.[depth=1]
(number): The maximum recursion depth.
Returns
(Array): Returns the new flattened array.
_.fromPairs(pairs)
_.fromPairs([['a', 1], ['b', 2]]);
// => { 'a': 1, 'b': 2 }
The inverse of _.toPairs
; this method returns an object composed
from key-value pairs
. See _.zipObject
Underscore
_.object(list, [values])
Since
4.0.0
Arguments
pairs
(Array): The key-value pairs.
Returns
(Object): Returns the new object.
_.head(array)
_.head([1, 2, 3]);
// => 1
_.head([]);
// => undefined
Gets the first element of array
.
Underscore
_.first(array, [n])
Alias: head, take
Since
0.1.0
Aliases
_.first
Arguments
array
(Array): The array to query.
Returns
(*): Returns the first element of array
.
_.indexOf(array, value, [fromIndex=0])
_.indexOf([1, 2, 1, 2], 2);
// => 1
// Search from the `fromIndex`.
_.indexOf([1, 2, 1, 2], 2, 2);
// => 3
Gets the index at which the first occurrence of value
is found in array
using SameValueZero
for equality comparisons. If fromIndex
is negative, it’s used as the
offset from the end of array
.
Underscore
Since
0.1.0
Arguments
array
(Array): The array to inspect.value
(*): The value to search for.[fromIndex=0]
(number): The index to search from.
Returns
(number): Returns the index of the matched value, else -1
.
_.initial(array)
_.initial([1, 2, 3]);
// => [1, 2]
Gets all but the last element of array
.
Underscore
Since
0.1.0
Arguments
array
(Array): The array to query.
Returns
(Array): Returns the slice of array
.
_.intersection([arrays])
_.intersection([2, 1], [2, 3]);
// => [2]
Creates an array of unique values that are included in all given arrays
using SameValueZero
for equality comparisons. The order and references of result values are
determined by the first array.
Underscore
Since
0.1.0
Arguments
[arrays]
(…Array): The arrays to inspect.
Returns
(Array): Returns the new array of intersecting values.
.intersectionBy([arrays], [iteratee=.identity])
_.intersectionBy([2.1, 1.2], [2.3, 3.4], Math.floor);
// => [2.1]
// The `_.property` iteratee shorthand.
_.intersectionBy([{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }], 'x');
// => [{ 'x': 1 }]
This method is like _.intersection
except that it accepts iteratee
which is invoked for each element of each arrays
to generate the criterion
by which they’re compared. The order and references of result values are
determined by the first array. The iteratee is invoked with one argument:
(value).
Underscore
Since
4.0.0
Arguments
[arrays]
(…Array): The arrays to inspect.[iteratee=_.identity]
(Function): The iteratee invoked per element.
Returns
(Array): Returns the new array of intersecting values.
_.intersectionWith([arrays], [comparator])
var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }];
var others = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }];
_.intersectionWith(objects, others, _.isEqual);
// => [{ 'x': 1, 'y': 2 }]
This method is like _.intersection
except that it accepts comparator
which is invoked to compare elements of arrays
. The order and references
of result values are determined by the first array. The comparator is
invoked with two arguments: (arrVal, othVal).
Underscore
Since
4.0.0
Arguments
[arrays]
(…Array): The arrays to inspect.[comparator]
(Function): The comparator invoked per element.
Returns
(Array): Returns the new array of intersecting values.
_.join(array, [separator=','])
_.join(['a', 'b', 'c'], '~');
// => 'a~b~c'
Converts all elements in array
into a string separated by separator
.
Underscore
Since
4.0.0
Arguments
array
(Array): The array to convert.[separator=',']
(string): The element separator.
Returns
(string): Returns the joined string.
_.last(array)
_.last([1, 2, 3]);
// => 3
Gets the last element of array
.
Underscore
Since
0.1.0
Arguments
array
(Array): The array to query.
Returns
(*): Returns the last element of array
.
_.lastIndexOf(array, value, [fromIndex=array.length-1])
_.lastIndexOf([1, 2, 1, 2], 2);
// => 3
// Search from the `fromIndex`.
_.lastIndexOf([1, 2, 1, 2], 2, 2);
// => 1
This method is like _.indexOf
except that it iterates over elements of
array
from right to left.
Underscore
Since
0.1.0
Arguments
array
(Array): The array to inspect.value
(*): The value to search for.[fromIndex=array.length-1]
(number): The index to search from.
Returns
(number): Returns the index of the matched value, else -1
.
_.nth(array, [n=0])
var array = ['a', 'b', 'c', 'd'];
_.nth(array, 1);
// => 'b'
_.nth(array, -2);
// => 'c';
Gets the element at index n
of array
. If n
is negative, the nth
element from the end is returned.
Underscore
Since
4.11.0
Arguments
array
(Array): The array to query.[n=0]
(number): The index of the element to return.
Returns
(*): Returns the nth element of array
.
_.pull(array, [values])
var array = ['a', 'b', 'c', 'a', 'b', 'c'];
_.pull(array, 'a', 'c');
console.log(array);
// => ['b', 'b']
Removes all given values from array
using
SameValueZero
for equality comparisons.
Note: Unlike _.without
, this method mutates array
. Use _.remove
to remove elements from an array by predicate.
Underscore
Since
2.0.0
Arguments
array
(Array): The array to modify.[values]
(…*): The values to remove.
Returns
(Array): Returns array
.
_.pullAll(array, values)
var array = ['a', 'b', 'c', 'a', 'b', 'c'];
_.pullAll(array, ['a', 'c']);
console.log(array);
// => ['b', 'b']
This method is like _.pull
except that it accepts an array of values to remove.
Note: Unlike _.difference
, this method mutates array
.
Underscore
Since
4.0.0
Arguments
array
(Array): The array to modify.values
(Array): The values to remove.
Returns
(Array): Returns array
.
.pullAllBy(array, values, [iteratee=.identity])
var array = [{ 'x': 1 }, { 'x': 2 }, { 'x': 3 }, { 'x': 1 }];
_.pullAllBy(array, [{ 'x': 1 }, { 'x': 3 }], 'x');
console.log(array);
// => [{ 'x': 2 }]
This method is like _.pullAll
except that it accepts iteratee
which is
invoked for each element of array
and values
to generate the criterion
by which they’re compared. The iteratee is invoked with one argument: (value).
Note: Unlike _.differenceBy
, this method mutates array
.
Underscore
Since
4.0.0
Arguments
array
(Array): The array to modify.values
(Array): The values to remove.[iteratee=_.identity]
(Function): The iteratee invoked per element.
Returns
(Array): Returns array
.
_.pullAllWith(array, values, [comparator])
var array = [{ 'x': 1, 'y': 2 }, { 'x': 3, 'y': 4 }, { 'x': 5, 'y': 6 }];
_.pullAllWith(array, [{ 'x': 3, 'y': 4 }], _.isEqual);
console.log(array);
// => [{ 'x': 1, 'y': 2 }, { 'x': 5, 'y': 6 }]
This method is like _.pullAll
except that it accepts comparator
which
is invoked to compare elements of array
to values
. The comparator is
invoked with two arguments: (arrVal, othVal).
Note: Unlike _.differenceWith
, this method mutates array
.
Underscore
Since
4.6.0
Arguments
array
(Array): The array to modify.values
(Array): The values to remove.[comparator]
(Function): The comparator invoked per element.
Returns
(Array): Returns array
.
_.pullAt(array, [indexes])
var array = ['a', 'b', 'c', 'd'];
var pulled = _.pullAt(array, [1, 3]);
console.log(array);
// => ['a', 'c']
console.log(pulled);
// => ['b', 'd']
Removes elements from array
corresponding to indexes
and returns an
array of removed elements.
Note: Unlike _.at
, this method mutates array
.
Underscore
Since
3.0.0
Arguments
array
(Array): The array to modify.[indexes]
(…(number|number[])): The indexes of elements to remove.
Returns
(Array): Returns the new array of removed elements.
.remove(array, [predicate=.identity])
var array = [1, 2, 3, 4];
var evens = _.remove(array, function(n) {
return n % 2 == 0;
});
console.log(array);
// => [1, 3]
console.log(evens);
// => [2, 4]
Removes all elements from array
that predicate
returns truthy for
and returns an array of the removed elements. The predicate is invoked
with three arguments: (value, index, array).
Note: Unlike _.filter
, this method mutates array
. Use _.pull
to pull elements from an array by value.
Underscore
Since
2.0.0
Arguments
array
(Array): The array to modify.[predicate=_.identity]
(Function): The function invoked per iteration.
Returns
(Array): Returns the new array of removed elements.
_.reverse(array)
var array = [1, 2, 3];
_.reverse(array);
// => [3, 2, 1]
console.log(array);
// => [3, 2, 1]
Reverses array
so that the first element becomes the last, the second
element becomes the second to last, and so on.
Note: This method mutates array
and is based on
Array#reverse
.
Underscore
Since
4.0.0
Arguments
array
(Array): The array to modify.
Returns
(Array): Returns array
.
_.slice(array, [start=0], [end=array.length])
_.sortedIndex([30, 50], 40);
// => 1
Creates a slice of array
from start
up to, but not including, end
.
Note: This method is used instead of
Array#slice
to ensure dense arrays are
returned.
Underscore
Since
3.0.0
Arguments
array
(Array): The array to slice.[start=0]
(number): The start position.[end=array.length]
(number): The end position.
Returns
(Array): Returns the slice of array
.
_.sortedIndex(array, value)
Uses a binary search to determine the lowest index at which value
should be inserted into array
in order to maintain its sort order.
Underscore
Since
0.1.0
Arguments
array
(Array): The sorted array to inspect.value
(*): The value to evaluate.
Returns
(number): Returns the index at which value
should be inserted into array
.
.sortedIndexBy(array, value, [iteratee=.identity])
var objects = [{ 'x': 4 }, { 'x': 5 }];
_.sortedIndexBy(objects, { 'x': 4 }, function(o) { return o.x; });
// => 0
// The `_.property` iteratee shorthand.
_.sortedIndexBy(objects, { 'x': 4 }, 'x');
// => 0
This method is like _.sortedIndex
except that it accepts iteratee
which is invoked for value
and each element of array
to compute their
sort ranking. The iteratee is invoked with one argument: (value).
Underscore
Since
4.0.0
Arguments
array
(Array): The sorted array to inspect.value
(*): The value to evaluate.[iteratee=_.identity]
(Function): The iteratee invoked per element.
Returns
(number): Returns the index at which value
should be inserted into array
.
_.sortedIndexOf(array, value)
_.sortedIndexOf([4, 5, 5, 5, 6], 5);
// => 1
This method is like _.indexOf
except that it performs a binary
search on a sorted array
.
Underscore
Since
4.0.0
Arguments
array
(Array): The array to inspect.value
(*): The value to search for.
Returns
(number): Returns the index of the matched value, else -1
.
_.sortedLastIndex(array, value)
_.sortedLastIndex([4, 5, 5, 5, 6], 5);
// => 4
This method is like _.sortedIndex
except that it returns the highest
index at which value
should be inserted into array
in order to
maintain its sort order.
Underscore
Since
3.0.0
Arguments
array
(Array): The sorted array to inspect.value
(*): The value to evaluate.
Returns
(number): Returns the index at which value
should be inserted into array
.
.sortedLastIndexBy(array, value, [iteratee=.identity])
var objects = [{ 'x': 4 }, { 'x': 5 }];
_.sortedLastIndexBy(objects, { 'x': 4 }, function(o) { return o.x; });
// => 1
// The `_.property` iteratee shorthand.
_.sortedLastIndexBy(objects, { 'x': 4 }, 'x');
// => 1
This method is like _.sortedLastIndex
except that it accepts iteratee
which is invoked for value
and each element of array
to compute their
sort ranking. The iteratee is invoked with one argument: (value).
Underscore
Since
4.0.0
Arguments
array
(Array): The sorted array to inspect.value
(*): The value to evaluate.[iteratee=_.identity]
(Function): The iteratee invoked per element.
Returns
(number): Returns the index at which value
should be inserted into array
.
_.sortedLastIndexOf(array, value)
_.sortedLastIndexOf([4, 5, 5, 5, 6], 5);
// => 3
This method is like _.lastIndexOf
except that it performs a binary
search on a sorted array
.
Underscore
Since
4.0.0
Arguments
array
(Array): The array to inspect.value
(*): The value to search for.
Returns
(number): Returns the index of the matched value, else -1
.
_.sortedUniq(array)
_.sortedUniq([1, 1, 2]);
// => [1, 2]
This method is like _.uniq
except that it’s designed and optimized
for sorted arrays.
Underscore
Since
4.0.0
Arguments
array
(Array): The array to inspect.
Returns
(Array): Returns the new duplicate free array.
_.sortedUniqBy(array, [iteratee])
_.sortedUniqBy([1.1, 1.2, 2.3, 2.4], Math.floor);
// => [1.1, 2.3]
This method is like _.uniqBy
except that it’s designed and optimized
for sorted arrays.
Underscore
Since
4.0.0
Arguments
array
(Array): The array to inspect.[iteratee]
(Function): The iteratee invoked per element.
Returns
(Array): Returns the new duplicate free array.
_.tail(array)
_.tail([1, 2, 3]);
// => [2, 3]
//Underscore
_.rest([5, 4, 3, 2, 1]);
=> [4, 3, 2, 1]
Gets all but the first element of array
.
Underscore
_.rest(array, [index])
Alias: tail, drop
Since
4.0.0
Arguments
array
(Array): The array to query.
Returns
(Array): Returns the slice of array
.
_.take(array, [n=1])
_.take([1, 2, 3]);
// => [1]
_.take([1, 2, 3], 2);
// => [1, 2]
_.take([1, 2, 3], 5);
// => [1, 2, 3]
_.take([1, 2, 3], 0);
// => []
//Underscore
_.first([5, 4, 3, 2, 1]);
=> 5
Creates a slice of array
with n
elements taken from the beginning. See: _.first
and _.head
.
Underscore
_.first(array, [n])
Alias: head, take
(Use equivalent lodash method)
Since
0.1.0
Arguments
array
(Array): The array to query.[n=1]
(number): The number of elements to take.
Returns
(Array): Returns the slice of array
.
_.takeRight(array, [n=1])
_.takeRight([1, 2, 3]);
// => [3]
_.takeRight([1, 2, 3], 2);
// => [2, 3]
_.takeRight([1, 2, 3], 5);
// => [1, 2, 3]
_.takeRight([1, 2, 3], 0);
// => []
Creates a slice of array
with n
elements taken from the end.
Underscore
Since
3.0.0
Arguments
array
(Array): The array to query.[n=1]
(number): The number of elements to take.
Returns
(Array): Returns the slice of array
.
.takeRightWhile(array, [predicate=.identity])
var users = [
{ 'user': 'barney', 'active': true },
{ 'user': 'fred', 'active': false },
{ 'user': 'pebbles', 'active': false }
];
_.takeRightWhile(users, function(o) { return !o.active; });
// => objects for ['fred', 'pebbles']
// The `_.matches` iteratee shorthand.
_.takeRightWhile(users, { 'user': 'pebbles', 'active': false });
// => objects for ['pebbles']
// The `_.matchesProperty` iteratee shorthand.
_.takeRightWhile(users, ['active', false]);
// => objects for ['fred', 'pebbles']
// The `_.property` iteratee shorthand.
_.takeRightWhile(users, 'active');
// => []
Creates a slice of array
with elements taken from the end. Elements are
taken until predicate
returns falsey. The predicate is invoked with
three arguments: (value, index, array).
Underscore
Since
3.0.0
Arguments
array
(Array): The array to query.[predicate=_.identity]
(Function): The function invoked per iteration.
Returns
(Array): Returns the slice of array
.
.takeWhile(array, [predicate=.identity])
var users = [
{ 'user': 'barney', 'active': false },
{ 'user': 'fred', 'active': false },
{ 'user': 'pebbles', 'active': true }
];
_.takeWhile(users, function(o) { return !o.active; });
// => objects for ['barney', 'fred']
// The `_.matches` iteratee shorthand.
_.takeWhile(users, { 'user': 'barney', 'active': false });
// => objects for ['barney']
// The `_.matchesProperty` iteratee shorthand.
_.takeWhile(users, ['active', false]);
// => objects for ['barney', 'fred']
// The `_.property` iteratee shorthand.
_.takeWhile(users, 'active');
// => []
Creates a slice of array
with elements taken from the beginning. Elements
are taken until predicate
returns falsey. The predicate is invoked with
three arguments: (value, index, array).
Underscore
Since
3.0.0
Arguments
array
(Array): The array to query.[predicate=_.identity]
(Function): The function invoked per iteration.
Returns
(Array): Returns the slice of array
.
_.union([arrays])
_.union([2], [1, 2]);
// => [2, 1]
Creates an array of unique values, in order, from all given arrays using
SameValueZero
for equality comparisons.
Underscore
Since
0.1.0
Arguments
[arrays]
(…Array): The arrays to inspect.
Returns
(Array): Returns the new array of combined values.
.unionBy([arrays], [iteratee=.identity])
_.unionBy([2.1], [1.2, 2.3], Math.floor);
// => [2.1, 1.2]
// The `_.property` iteratee shorthand.
_.unionBy([{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }], 'x');
// => [{ 'x': 1 }, { 'x': 2 }]
This method is like _.union
except that it accepts iteratee
which is
invoked for each element of each arrays
to generate the criterion by
which uniqueness is computed. Result values are chosen from the first
array in which the value occurs. The iteratee is invoked with one argument:
(value).
Underscore
Since
4.0.0
Arguments
[arrays]
(…Array): The arrays to inspect.[iteratee=_.identity]
(Function): The iteratee invoked per element.
Returns
(Array): Returns the new array of combined values.
_.unionWith([arrays], [comparator])
var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }];
var others = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }];
_.unionWith(objects, others, _.isEqual);
// => [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }, { 'x': 1, 'y': 1 }]
This method is like _.union
except that it accepts comparator
which
is invoked to compare elements of arrays
. Result values are chosen from
the first array in which the value occurs. The comparator is invoked
with two arguments: (arrVal, othVal).
Underscore
Since
4.0.0
Arguments
[arrays]
(…Array): The arrays to inspect.[comparator]
(Function): The comparator invoked per element.
Returns
(Array): Returns the new array of combined values.
_.uniq(array)
_.uniq([2, 1, 2]);
// => [2, 1]
Creates a duplicate-free version of an array, using
SameValueZero
for equality comparisons, in which only the first occurrence of each element
is kept. The order of result values is determined by the order they occur
in the array.
Underscore
_.uniq(array, [isSorted], [iteratee])
Alias: unique
Since
0.1.0
Arguments
array
(Array): The array to inspect.
Returns
(Array): Returns the new duplicate free array.
.uniqBy(array, [iteratee=.identity])
_.uniqBy([2.1, 1.2, 2.3], Math.floor);
// => [2.1, 1.2]
// The `_.property` iteratee shorthand.
_.uniqBy([{ 'x': 1 }, { 'x': 2 }, { 'x': 1 }], 'x');
// => [{ 'x': 1 }, { 'x': 2 }]
//Underscore
.uniq([1, 2, 1, 4, 1, 3]);
=> [1, 2, 4, 3]
This method is like _.uniq
except that it accepts iteratee
which is
invoked for each element in array
to generate the criterion by which
uniqueness is computed. The order of result values is determined by the
order they occur in the array. The iteratee is invoked with one argument:
(value).
Underscore
_.uniq(array, [isSorted], [iteratee])
Alias: unique
Produces a duplicate-free version of the array, using === to test object equality. In particular only the first occurence of each value is kept. If you know in advance that the array is sorted, passing true for isSorted will run a much faster algorithm. If you want to compute unique items based on a transformation, pass an iteratee function.
Since
4.0.0
Arguments
array
(Array): The array to inspect.[iteratee=_.identity]
(Function): The iteratee invoked per element.
Returns
(Array): Returns the new duplicate free array.
_.uniqWith(array, [comparator])
var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }, { 'x': 1, 'y': 2 }];
_.uniqWith(objects, _.isEqual);
// => [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]
This method is like _.uniq
except that it accepts comparator
which
is invoked to compare elements of array
. The order of result values is
determined by the order they occur in the array.The comparator is invoked
with two arguments: (arrVal, othVal).
Underscore
Since
4.0.0
Arguments
array
(Array): The array to inspect.[comparator]
(Function): The comparator invoked per element.
Returns
(Array): Returns the new duplicate free array.
_.unzip(array)
var zipped = _.zip(['a', 'b'], [1, 2], [true, false]);
// => [['a', 1, true], ['b', 2, false]]
_.unzip(zipped);
// => [['a', 'b'], [1, 2], [true, false]]
This method is like _.zip
except that it accepts an array of grouped
elements and creates an array regrouping the elements to their pre-zip
configuration.
Underscore
Since
1.2.0
Arguments
array
(Array): The array of grouped elements to process.
Returns
(Array): Returns the new array of regrouped elements.
.unzipWith(array, [iteratee=.identity])
var zipped = _.zip([1, 2], [10, 20], [100, 200]);
// => [[1, 10, 100], [2, 20, 200]]
_.unzipWith(zipped, _.add);
// => [3, 30, 300]
This method is like _.unzip
except that it accepts iteratee
to specify
how regrouped values should be combined. The iteratee is invoked with the
elements of each group: (…group).
Underscore
Since
3.8.0
Arguments
array
(Array): The array of grouped elements to process.[iteratee=_.identity]
(Function): The function to combine regrouped values.
Returns
(Array): Returns the new array of regrouped elements.
_.without(array, [values])
_.without([2, 1, 2, 3], 1, 2);
// => [3]
Creates an array excluding all given values using
SameValueZero
for equality comparisons.
Note: Unlike _.pull
, this method returns a new array.
Underscore
Since
0.1.0
Arguments
array
(Array): The array to inspect.[values]
(…*): The values to exclude.
Returns
(Array): Returns the new array of filtered values.
_.xor([arrays])
_.xor([2, 1], [2, 3]);
// => [1, 3]
_.difference([1, 2, 3, 4, 5], [5, 2, 10]);
=> [1, 3, 4]
Creates an array of unique values that is the symmetric difference of the given arrays. The order of result values is determined by the order they occur in the arrays.
Underscore
_.difference(array, *others)
_.without(array, *values)
Since
2.4.0
Arguments
[arrays]
(…Array): The arrays to inspect.
Returns
(Array): Returns the new array of filtered values.
.xorBy([arrays], [iteratee=.identity])
_.xorBy([2.1, 1.2], [2.3, 3.4], Math.floor);
// => [1.2, 3.4]
// The `_.property` iteratee shorthand.
_.xorBy([{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }], 'x');
// => [{ 'x': 2 }]
This method is like _.xor
except that it accepts iteratee
which is
invoked for each element of each arrays
to generate the criterion by
which by which they’re compared. The order of result values is determined
by the order they occur in the arrays. The iteratee is invoked with one
argument: (value).
Underscore
Since
4.0.0
Arguments
[arrays]
(…Array): The arrays to inspect.[iteratee=_.identity]
(Function): The iteratee invoked per element.
Returns
(Array): Returns the new array of filtered values.
_.xorWith([arrays], [comparator])
var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }];
var others = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }];
_.xorWith(objects, others, _.isEqual);
// => [{ 'x': 2, 'y': 1 }, { 'x': 1, 'y': 1 }]
This method is like _.xor
except that it accepts comparator
which is
invoked to compare elements of arrays
. The order of result values is
determined by the order they occur in the arrays. The comparator is invoked
with two arguments: (arrVal, othVal).
Underscore
Since
4.0.0
Arguments
[arrays]
(…Array): The arrays to inspect.[comparator]
(Function): The comparator invoked per element.
Returns
(Array): Returns the new array of filtered values.
_.zip([arrays])
_.zip(['a', 'b'], [1, 2], [true, false]);
// => [['a', 1, true], ['b', 2, false]]
Creates an array of grouped elements, the first of which contains the first elements of the given arrays, the second of which contains the second elements of the given arrays, and so on.
Underscore
Since
0.1.0
Arguments
[arrays]
(…Array): The arrays to process.
Returns
(Array): Returns the new array of grouped elements.
_.zipObject([props=[]], [values=[]])
_.zipObject(['a', 'b'], [1, 2]);
// => { 'a': 1, 'b': 2 }
_.object(['moe', 'larry', 'curly'], [30, 40, 50]);
=> {moe: 30, larry: 40, curly: 50}
_.object([['moe', 30], ['larry', 40], ['curly', 50]]);
=> {moe: 30, larry: 40, curly: 50}
This method is like _.fromPairs
except that it accepts two arrays,
one of property identifiers and one of corresponding values.
Underscore
See: .zipObjects
See: .objects
(use lodash _.fromPairs
)
Since
0.4.0
Arguments
[props=[]]
(Array): The property identifiers.[values=[]]
(Array): The property values.
Returns
(Object): Returns the new object.
_.zipObjectDeep([props=[]], [values=[]])
_.zipObjectDeep(['a.b[0].c', 'a.b[1].d'], [1, 2]);
// => { 'a': { 'b': [{ 'c': 1 }, { 'd': 2 }] } }
This method is like _.zipObject
except that it supports property paths.
Underscore
Since
4.1.0
Arguments
[props=[]]
(Array): The property identifiers.[values=[]]
(Array): The property values.
Returns
(Object): Returns the new object.
.zipWith([arrays], [iteratee=.identity])
_.zipWith([1, 2], [10, 20], [100, 200], function(a, b, c) {
return a + b + c;
});
// => [111, 222]
This method is like _.zip
except that it accepts iteratee
to specify
how grouped values should be combined. The iteratee is invoked with the
elements of each group: (…group).
Underscore
Since
3.8.0
Arguments
[arrays]
(…Array): The arrays to process.[iteratee=_.identity]
(Function): The function to combine grouped values.
Returns
(Array): Returns the new array of grouped elements.
Collections
.countBy(collection, [iteratee=.identity])
_.countBy([6.1, 4.2, 6.3], Math.floor);
// => { '4': 1, '6': 2 }
// The `_.property` iteratee shorthand.
_.countBy(['one', 'two', 'three'], 'length');
// => { '3': 2, '5': 1 }
Creates an object composed of keys generated from the results of running
each element of collection
thru iteratee
. The corresponding value of
each key is the number of times the key was returned by iteratee
. The
iteratee is invoked with one argument: (value).
Underscore
Since
0.5.0
Arguments
collection
(Array|Object): The collection to iterate over.[iteratee=_.identity]
(Function): The iteratee to transform keys.
Returns
(Object): Returns the composed aggregate object.
.every(collection, [predicate=.identity])
_.every([true, 1, null, 'yes'], Boolean);
// => false
var users = [
{ 'user': 'barney', 'age': 36, 'active': false },
{ 'user': 'fred', 'age': 40, 'active': false }
];
// The `_.matches` iteratee shorthand.
_.every(users, { 'user': 'barney', 'active': false });
// => false
// The `_.matchesProperty` iteratee shorthand.
_.every(users, ['active', false]);
// => true
// The `_.property` iteratee shorthand.
_.every(users, 'active');
// => false
// Underscore
_.all(users, 'active');
// => false
Checks if predicate
returns truthy for all elements of collection
.
Iteration is stopped once predicate
returns falsey. The predicate is
invoked with three arguments: (value, index|key, collection).
Note: This method returns true
for
empty collections because
everything is true of
elements of empty collections.
Underscore
_.every(list, [predicate], [context])
Alias: all
Since
0.1.0
Arguments
collection
(Array|Object): The collection to iterate over.[predicate=_.identity]
(Function): The function invoked per iteration.
Returns
(boolean): Returns true
if all elements pass the predicate check, else false
.
.filter(collection, [predicate=.identity])
var users = [
{ 'user': 'barney', 'age': 36, 'active': true },
{ 'user': 'fred', 'age': 40, 'active': false }
];
_.filter(users, function(o) { return !o.active; });
// => objects for ['fred']
// The `_.matches` iteratee shorthand.
_.filter(users, { 'age': 36, 'active': true });
// => objects for ['barney']
// The `_.matchesProperty` iteratee shorthand.
_.filter(users, ['active', false]);
// => objects for ['fred']
// The `_.property` iteratee shorthand.
_.filter(users, 'active');
// => objects for ['barney']
Iterates over elements of collection
, returning an array of all elements
predicate
returns truthy for. The predicate is invoked with three
arguments: (value, index|key, collection).
Note: Unlike _.remove
, this method returns a new array.
Underscore
.filter(list, predicate, [context])
Alias: select
Similar:
.where(list, properties)
* Looks through each value in the list, returning an array of all the values that contain all of the key-value pairs listed in properties.
_.findWhere(list, properties)
* Looks through the list and returns the first value that matches all of the key-value pairs listed in properties. If no match is found, or if list is empty, undefined will be returned.
Since
0.1.0
Arguments
collection
(Array|Object): The collection to iterate over.[predicate=_.identity]
(Function): The function invoked per iteration.
Returns
(Array): Returns the new filtered array.
.find(collection, [predicate=.identity], [fromIndex=0])
var users = [
{ 'user': 'barney', 'age': 36, 'active': true },
{ 'user': 'fred', 'age': 40, 'active': false },
{ 'user': 'pebbles', 'age': 1, 'active': true }
];
_.find(users, function(o) { return o.age < 40; });
// => object for 'barney'
// The `_.matches` iteratee shorthand.
_.find(users, { 'age': 1, 'active': true });
// => object for 'pebbles'
// The `_.matchesProperty` iteratee shorthand.
_.find(users, ['active', false]);
// => object for 'fred'
// The `_.property` iteratee shorthand.
_.find(users, 'active');
// => object for 'barney'
//Underscore
var even = _.find([1, 2, 3, 4, 5, 6], function(num){ return num % 2 == 0; });
=> 2
_.findWhere(publicServicePulitzers, {newsroom: "The New York Times"});
=> {year: 1918, newsroom: "The New York Times",
reason: "For its public service in publishing in full so many official reports,
documents and speeches by European statesmen relating to the progress and
conduct of the war."}
Iterates over elements of collection
, returning the first element
predicate
returns truthy for. The predicate is invoked with three
arguments: (value, index|key, collection).
Underscore
.find(list, predicate, [context])
Alias: detect
.findWhere(list, properties)
Since
0.1.0
Arguments
collection
(Array|Object): The collection to inspect.[predicate=_.identity]
(Function): The function invoked per iteration.[fromIndex=0]
(number): The index to search from.
Returns
(*): Returns the matched element, else undefined
.
.findLast(collection, [predicate=.identity], [fromIndex=collection.length-1])
_.findLast([1, 2, 3, 4], function(n) {
return n % 2 == 1;
});
// => 3
This method is like _.find
except that it iterates over elements of
collection
from right to left.
Underscore
Since
2.0.0
Arguments
collection
(Array|Object): The collection to inspect.[predicate=_.identity]
(Function): The function invoked per iteration.[fromIndex=collection.length-1]
(number): The index to search from.
Returns
(*): Returns the matched element, else undefined
.
.flatMap(collection, [iteratee=.identity])
function duplicate(n) {
return [n, n];
}
_.flatMap([1, 2], duplicate);
// => [1, 1, 2, 2]
Creates a flattened array of values by running each element in collection
thru iteratee
and flattening the mapped results. The iteratee is invoked
with three arguments: (value, index|key, collection).
Underscore
Since
4.0.0
Arguments
collection
(Array|Object): The collection to iterate over.[iteratee=_.identity]
(Function): The function invoked per iteration.
Returns
(Array): Returns the new flattened array.
.flatMapDeep(collection, [iteratee=.identity])
function duplicate(n) {
return [[[n, n]]];
}
_.flatMapDeep([1, 2], duplicate);
// => [1, 1, 2, 2]
This method is like _.flatMap
except that it recursively flattens the
mapped results.
Underscore
Since
4.7.0
Arguments
collection
(Array|Object): The collection to iterate over.[iteratee=_.identity]
(Function): The function invoked per iteration.
Returns
(Array): Returns the new flattened array.
.flatMapDepth(collection, [iteratee=.identity], [depth=1])
function duplicate(n) {
return [[[n, n]]];
}
_.flatMapDepth([1, 2], duplicate, 2);
// => [[1, 1], [2, 2]]
This method is like _.flatMap
except that it recursively flattens the
mapped results up to depth
times.
Underscore
Since
4.7.0
Arguments
collection
(Array|Object): The collection to iterate over.[iteratee=_.identity]
(Function): The function invoked per iteration.[depth=1]
(number): The maximum recursion depth.
Returns
(Array): Returns the new flattened array.
.forEach(collection, [iteratee=.identity])
_.forEach([1, 2], function(value) {
console.log(value);
});
// => Logs `1` then `2`.
_.forEach({ 'a': 1, 'b': 2 }, function(value, key) {
console.log(key);
});
// => Logs 'a' then 'b' (iteration order is not guaranteed).
Iterates over elements of collection
and invokes iteratee
for each element.
The iteratee is invoked with three arguments: (value, index|key, collection).
Iteratee functions may exit iteration early by explicitly returning false
.
Note: As with other “Collections” methods, objects with a “length”
property are iterated like arrays. To avoid this behavior use _.forIn
or _.forOwn
for object iteration.
Underscore
_.each(list, iteratee, [context])
Alias: forEach
Since
0.1.0
Aliases
_.each
Arguments
collection
(Array|Object): The collection to iterate over.[iteratee=_.identity]
(Function): The function invoked per iteration.
Returns
(*): Returns collection
.
.forEachRight(collection, [iteratee=.identity])
_.forEachRight([1, 2], function(value) {
console.log(value);
});
// => Logs `2` then `1`.
This method is like _.forEach
except that it iterates over elements of
collection
from right to left.
Underscore
Since
2.0.0
Aliases
_.eachRight
Arguments
collection
(Array|Object): The collection to iterate over.[iteratee=_.identity]
(Function): The function invoked per iteration.
Returns
(*): Returns collection
.
.groupBy(collection, [iteratee=.identity])
_.groupBy([6.1, 4.2, 6.3], Math.floor);
// => { '4': [4.2], '6': [6.1, 6.3] }
// The `_.property` iteratee shorthand.
_.groupBy(['one', 'two', 'three'], 'length');
// => { '3': ['one', 'two'], '5': ['three'] }
Creates an object composed of keys generated from the results of running
each element of collection
thru iteratee
. The order of grouped values
is determined by the order they occur in collection
. The corresponding
value of each key is an array of elements responsible for generating the
key. The iteratee is invoked with one argument: (value).
Underscore
_.groupBy(list, iteratee, [context])
Since
0.1.0
Arguments
collection
(Array|Object): The collection to iterate over.[iteratee=_.identity]
(Function): The iteratee to transform keys.
Returns
(Object): Returns the composed aggregate object.
_.includes(collection, value, [fromIndex=0])
_.includes([1, 2, 3], 1);
// => true
_.includes([1, 2, 3], 1, 2);
// => false
_.includes({ 'a': 1, 'b': 2 }, 1);
// => true
_.includes('abcd', 'bc');
// => true
//Underscore
_.contains([1, 2, 3], 3);
=> true
Checks if value
is in collection
. If collection
is a string, it’s
checked for a substring of value
, otherwise
SameValueZero
is used for equality comparisons. If fromIndex
is negative, it’s used as
the offset from the end of collection
.
Underscore
.contains(list, value, [fromIndex])
Alias: includes
Since
0.1.0
Arguments
collection
(Array|Object|string): The collection to inspect.value
(*): The value to search for.[fromIndex=0]
(number): The index to search from.
Returns
(boolean): Returns true
if value
is found, else false
.
_.invokeMap(collection, path, [args])
_.invokeMap([[5, 1, 7], [3, 2, 1]], 'sort');
// => [[1, 5, 7], [1, 2, 3]]
_.invokeMap([123, 456], String.prototype.split, '');
// => [['1', '2', '3'], ['4', '5', '6']]
//Underscore
_.invoke([[5, 1, 7], [3, 2, 1]], 'sort');
=> [[1, 5, 7], [1, 2, 3]]
Invokes the method at path
of each element in collection
, returning
an array of the results of each invoked method. Any additional arguments
are provided to each invoked method. If path
is a function, it’s invoked
for, and this
bound to, each element in collection
.
Underscore
_.invoke(list, methodName, *arguments)
Since
4.0.0
Arguments
collection
(Array|Object): The collection to iterate over.path
(Array|Function|string): The path of the method to invoke or the function invoked per iteration.[args]
(…*): The arguments to invoke each method with.
Returns
(Array): Returns the array of results.
.keyBy(collection, [iteratee=.identity])
var array = [
{ 'dir': 'left', 'code': 97 },
{ 'dir': 'right', 'code': 100 }
];
_.keyBy(array, function(o) {
return String.fromCharCode(o.code);
});
// => { 'a': { 'dir': 'left', 'code': 97 }, 'd': { 'dir': 'right', 'code': 100 } }
_.keyBy(array, 'dir');
// => { 'left': { 'dir': 'left', 'code': 97 }, 'right': { 'dir': 'right', 'code': 100 } }
//Underscore
var stooges = [{name: 'moe', age: 40}, {name: 'larry', age: 50}, {name: 'curly', age: 60}];
_.indexBy(stooges, 'age');
=> {
"40": {name: 'moe', age: 40},
"50": {name: 'larry', age: 50},
"60": {name: 'curly', age: 60}
}
Creates an object composed of keys generated from the results of running
each element of collection
thru iteratee
. The corresponding value of
each key is the last element responsible for generating the key. The
iteratee is invoked with one argument: (value).
Underscore
.indexBy(list, iteratee, [context])
Given a list, and an iteratee function that returns a key for each element in the list (or a property name), returns an object with an index of each item. Just like groupBy, but for when you know your keys are unique.
See .object(list, [values])
Since
4.0.0
Arguments
collection
(Array|Object): The collection to iterate over.[iteratee=_.identity]
(Function): The iteratee to transform keys.
Returns
(Object): Returns the composed aggregate object.
.map(collection, [iteratee=.identity])
function square(n) {
return n * n;
}
_.map([4, 8], square);
// => [16, 64]
_.map({ 'a': 4, 'b': 8 }, square);
// => [16, 64] (iteration order is not guaranteed)
var users = [
{ 'user': 'barney' },
{ 'user': 'fred' }
];
// The `_.property` iteratee shorthand (like 'pluck' in Underscore).
_.map(users, 'user');
// => ['barney', 'fred']
//Underscore
var stooges = [{name: 'moe', age: 40}, {name: 'larry', age: 50}, {name: 'curly', age: 60}];
_.pluck(stooges, 'name');
=> ["moe", "larry", "curly"]
Creates an array of values by running each element in collection
thru
iteratee
. The iteratee is invoked with three arguments:
(value, index|key, collection).
Many lodash methods are guarded to work as iteratees for methods like
_.every
, _.filter
, _.map
, _.mapValues
, _.reject
, and _.some
.
The guarded methods are:
ary
, chunk
, curry
, curryRight
, drop
, dropRight
, every
,
fill
, invert
, parseInt
, random
, range
, rangeRight
, repeat
,
sampleSize
, slice
, some
, sortBy
, split
, take
, takeRight
,
template
, trim
, trimEnd
, trimStart
, and words
Underscore
.map(list, iteratee, [context])
Alias: collect
Also see: .pluck(list, propertyName)
A convenient version of what is perhaps the most common use-case for map: extracting a list of property values.
Since
0.1.0
Arguments
collection
(Array|Object): The collection to iterate over.[iteratee=_.identity]
(Function): The function invoked per iteration.
Returns
(Array): Returns the new mapped array.
.orderBy(collection, [iteratees=[.identity]], [orders])
var users = [
{ 'user': 'fred', 'age': 48 },
{ 'user': 'barney', 'age': 34 },
{ 'user': 'fred', 'age': 40 },
{ 'user': 'barney', 'age': 36 }
];
// Sort by `user` in ascending order and by `age` in descending order.
_.orderBy(users, ['user', 'age'], ['asc', 'desc']);
// => objects for [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 40]]
This method is like _.sortBy
except that it allows specifying the sort
orders of the iteratees to sort by. If orders
is unspecified, all values
are sorted in ascending order. Otherwise, specify an order of “desc” for
descending or “asc” for ascending sort order of corresponding values.
Underscore
_.sortBy(list, iteratee, [context])
Since
4.0.0
Arguments
collection
(Array|Object): The collection to iterate over.[iteratees=[_.identity]]
(Array[]|Function[]|Object[]|string[]): The iteratees to sort by.[orders]
(string[]): The sort orders ofiteratees
.
Returns
(Array): Returns the new sorted array.
.partition(collection, [predicate=.identity])
var users = [
{ 'user': 'barney', 'age': 36, 'active': false },
{ 'user': 'fred', 'age': 40, 'active': true },
{ 'user': 'pebbles', 'age': 1, 'active': false }
];
_.partition(users, function(o) { return o.active; });
// => objects for [['fred'], ['barney', 'pebbles']]
// The `_.matches` iteratee shorthand.
_.partition(users, { 'age': 1, 'active': false });
// => objects for [['pebbles'], ['barney', 'fred']]
// The `_.matchesProperty` iteratee shorthand.
_.partition(users, ['active', false]);
// => objects for [['barney', 'pebbles'], ['fred']]
// The `_.property` iteratee shorthand.
_.partition(users, 'active');
// => objects for [['fred'], ['barney', 'pebbles']]
Split array into two arrays: one whose elements all satisfy predicate and one whose elements all do not satisfy predicate. The predicate is invoked with one argument: (value).
Underscore
_.partition(array, predicate)
Since
3.0.0
Arguments
collection
(Array|Object): The collection to iterate over.[predicate=_.identity]
(Function): The function invoked per iteration.
Returns
(Array): Returns the array of grouped elements.
.reduce(collection, [iteratee=.identity], [accumulator])
_.reduce([1, 2], function(sum, n) {
return sum + n;
}, 0);
// => 3
_.reduce({ 'a': 1, 'b': 2, 'c': 1 }, function(result, value, key) {
(result[value] || (result[value] = [])).push(key);
return result;
}, {});
// => { '1': ['a', 'c'], '2': ['b'] } (iteration order is not guaranteed)
Reduces collection
to a value which is the accumulated result of running
each element in collection
thru iteratee
, where each successive
invocation is supplied the return value of the previous. If accumulator
is not given, the first element of collection
is used as the initial
value. The iteratee is invoked with four arguments:
(accumulator, value, index|key, collection).
Many lodash methods are guarded to work as iteratees for methods like
_.reduce
, _.reduceRight
, and _.transform
.
The guarded methods are:
assign
, defaults
, defaultsDeep
, includes
, merge
, orderBy
,
and sortBy
Underscore
_.reduce(list, iteratee, [memo], [context])
Aliases: inject, foldl
Since
0.1.0
Arguments
collection
(Array|Object): The collection to iterate over.[iteratee=_.identity]
(Function): The function invoked per iteration.[accumulator]
(*): The initial value.
Returns
(*): Returns the accumulated value.
.reduceRight(collection, [iteratee=.identity], [accumulator])
var array = [[0, 1], [2, 3], [4, 5]];
_.reduceRight(array, function(flattened, other) {
return flattened.concat(other);
}, []);
// => [4, 5, 2, 3, 0, 1]
This method is like _.reduce
except that it iterates over elements of
collection
from right to left.
Underscore
_.reduceRight(list, iteratee, memo, [context])
Alias: foldr
Since
0.1.0
Arguments
collection
(Array|Object): The collection to iterate over.[iteratee=_.identity]
(Function): The function invoked per iteration.[accumulator]
(*): The initial value.
Returns
(*): Returns the accumulated value.
.reject(collection, [predicate=.identity])
var users = [
{ 'user': 'barney', 'age': 36, 'active': false },
{ 'user': 'fred', 'age': 40, 'active': true }
];
_.reject(users, function(o) { return !o.active; });
// => objects for ['fred']
// The `_.matches` iteratee shorthand.
_.reject(users, { 'age': 40, 'active': true });
// => objects for ['barney']
// The `_.matchesProperty` iteratee shorthand.
_.reject(users, ['active', false]);
// => objects for ['fred']
// The `_.property` iteratee shorthand.
_.reject(users, 'active');
// => objects for ['barney']
The opposite of _.filter
; this method returns the elements of collection
that predicate
does not return truthy for.
Underscore
Since
0.1.0
Arguments
collection
(Array|Object): The collection to iterate over.[predicate=_.identity]
(Function): The function invoked per iteration.
Returns
(Array): Returns the new filtered array.
_.sample(collection)
_.sample([1, 2, 3, 4]);
// => 2
Gets a random element from collection
.
Underscore
Since
2.0.0
Arguments
collection
(Array|Object): The collection to sample.
Returns
(*): Returns the random element.
_.sampleSize(collection, [n=1])
_.sampleSize([1, 2, 3], 2);
// => [3, 1]
_.sampleSize([1, 2, 3], 4);
// => [2, 3, 1]
Gets n
random elements at unique keys from collection
up to the
size of collection
.
Underscore
Since
4.0.0
Arguments
collection
(Array|Object): The collection to sample.[n=1]
(number): The number of elements to sample.
Returns
(Array): Returns the random elements.
_.shuffle(collection)
_.shuffle([1, 2, 3, 4]);
// => [4, 1, 3, 2]
Creates an array of shuffled values, using a version of the Fisher-Yates shuffle.
Underscore
Since
0.1.0
Arguments
collection
(Array|Object): The collection to shuffle.
Returns
(Array): Returns the new shuffled array.
_.size(collection)
_.size([1, 2, 3]);
// => 3
_.size({ 'a': 1, 'b': 2 });
// => 2
_.size('pebbles');
// => 7
Gets the size of collection
by returning its length for array-like
values or the number of own enumerable string keyed properties for objects.
Underscore
Since
0.1.0
Arguments
collection
(Array|Object|string): The collection to inspect.
Returns
(number): Returns the collection size.
.some(collection, [predicate=.identity])
_.some([null, 0, 'yes', false], Boolean);
// => true
var users = [
{ 'user': 'barney', 'active': true },
{ 'user': 'fred', 'active': false }
];
// The `_.matches` iteratee shorthand.
_.some(users, { 'user': 'barney', 'active': false });
// => false
// The `_.matchesProperty` iteratee shorthand.
_.some(users, ['active', false]);
// => true
// The `_.property` iteratee shorthand.
_.some(users, 'active');
// => true
Checks if predicate
returns truthy for any element of collection
.
Iteration is stopped once predicate
returns truthy. The predicate is
invoked with three arguments: (value, index|key, collection).
Underscore
_.some(list, [predicate], [context])
Alias: any
Since
0.1.0
Arguments
collection
(Array|Object): The collection to iterate over.[predicate=_.identity]
(Function): The function invoked per iteration.
Returns
(boolean): Returns true
if any element passes the predicate check, else false
.
.sortBy(collection, [iteratees=[.identity]])
var users = [
{ 'user': 'fred', 'age': 48 },
{ 'user': 'barney', 'age': 36 },
{ 'user': 'fred', 'age': 40 },
{ 'user': 'barney', 'age': 34 }
];
_.sortBy(users, [function(o) { return o.user; }]);
// => objects for [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 40]]
_.sortBy(users, ['user', 'age']);
// => objects for [['barney', 34], ['barney', 36], ['fred', 40], ['fred', 48]]
Creates an array of elements, sorted in ascending order by the results of running each element in a collection thru each iteratee. This method performs a stable sort, that is, it preserves the original sort order of equal elements. The iteratees are invoked with one argument: (value).
Underscore
Since
0.1.0
Arguments
collection
(Array|Object): The collection to iterate over.[iteratees=[_.identity]]
(…(Function|Function[])): The iteratees to sort by.
Returns
(Array): Returns the new sorted array.
Date
_.now()
_.defer(function(stamp) {
console.log(_.now() - stamp);
}, _.now());
// => Logs the number of milliseconds it took for the deferred invocation.
Gets the timestamp of the number of milliseconds that have elapsed since
the Unix epoch (1 January 1970 00
:00:00 UTC).
Underscore
_.now()
Since
2.4.0
Returns
(number): Returns the timestamp.
Function
_.after(n, func)
var saves = ['profile', 'settings'];
var done = _.after(saves.length, function() {
console.log('done saving!');
});
_.forEach(saves, function(type) {
asyncSave({ 'type': type, 'complete': done });
});
// => Logs 'done saving!' after the two async saves have completed.
The opposite of _.before
; this method creates a function that invokes
func
once it’s called n
or more times.
Underscore
Since
0.1.0
Arguments
n
(number): The number of calls beforefunc
is invoked.func
(Function): The function to restrict.
Returns
(Function): Returns the new restricted function.
_.ary(func, [n=func.length])
_.map(['6', '8', '10'], _.ary(parseInt, 1));
// => [6, 8, 10]
Creates a function that invokes func
, with up to n
arguments,
ignoring any additional arguments.
Underscore
Since
3.0.0
Arguments
func
(Function): The function to cap arguments for.[n=func.length]
(number): The arity cap.
Returns
(Function): Returns the new capped function.
_.before(n, func)
jQuery(element).on('click', _.before(5, addContactToList));
// => Allows adding up to 4 contacts to the list.
Creates a function that invokes func
, with the this
binding and arguments
of the created function, while it’s called less than n
times. Subsequent
calls to the created function return the result of the last func
invocation.
Underscore
Since
3.0.0
Arguments
n
(number): The number of calls at whichfunc
is no longer invoked.func
(Function): The function to restrict.
Returns
(Function): Returns the new restricted function.
_.bind(func, thisArg, [partials])
function greet(greeting, punctuation) {
return greeting + ' ' + this.user + punctuation;
}
var object = { 'user': 'fred' };
var bound = _.bind(greet, object, 'hi');
bound('!');
// => 'hi fred!'
// Bound with placeholders.
var bound = _.bind(greet, object, _, '!');
bound('hi');
// => 'hi fred!'
Creates a function that invokes func
with the this
binding of thisArg
and partials
prepended to the arguments it receives.
The _.bind.placeholder
value, which defaults to _
in monolithic builds,
may be used as a placeholder for partially applied arguments.
Note: Unlike native Function#bind
, this method doesn’t set the “length”
property of bound functions.
Underscore
Since
0.1.0
Arguments
func
(Function): The function to bind.thisArg
(*): Thethis
binding offunc
.[partials]
(…*): The arguments to be partially applied.
Returns
(Function): Returns the new bound function.
_.bindKey(object, key, [partials])
var object = {
'user': 'fred',
'greet': function(greeting, punctuation) {
return greeting + ' ' + this.user + punctuation;
}
};
var bound = _.bindKey(object, 'greet', 'hi');
bound('!');
// => 'hi fred!'
object.greet = function(greeting, punctuation) {
return greeting + 'ya ' + this.user + punctuation;
};
bound('!');
// => 'hiya fred!'
// Bound with placeholders.
var bound = _.bindKey(object, 'greet', _, '!');
bound('hi');
// => 'hiya fred!'
Creates a function that invokes the method at object[key]
with partials
prepended to the arguments it receives.
This method differs from _.bind
by allowing bound functions to reference
methods that may be redefined or don’t yet exist. See
Peter Michaux’s article
for more details.
The _.bindKey.placeholder
value, which defaults to _
in monolithic
builds, may be used as a placeholder for partially applied arguments.
Underscore
Since
0.10.0
Arguments
object
(Object): The object to invoke the method on.key
(string): The key of the method.[partials]
(…*): The arguments to be partially applied.
Returns
(Function): Returns the new bound function.
_.curry(func, [arity=func.length])
var abc = function(a, b, c) {
return [a, b, c];
};
var curried = _.curry(abc);
curried(1)(2)(3);
// => [1, 2, 3]
curried(1, 2)(3);
// => [1, 2, 3]
curried(1, 2, 3);
// => [1, 2, 3]
// Curried with placeholders.
curried(1)(_, 3)(2);
// => [1, 2, 3]
Creates a function that accepts arguments of func
and either invokes
func
returning its result, if at least arity
number of arguments have
been provided, or returns a function that accepts the remaining func
arguments, and so on. The arity of func
may be specified if func.length
is not sufficient.
The _.curry.placeholder
value, which defaults to _
in monolithic builds,
may be used as a placeholder for provided arguments.
Note: This method doesn’t set the “length” property of curried functions.
Underscore
Since
2.0.0
Arguments
func
(Function): The function to curry.[arity=func.length]
(number): The arity offunc
.
Returns
(Function): Returns the new curried function.
_.curryRight(func, [arity=func.length])
var abc = function(a, b, c) {
return [a, b, c];
};
var curried = _.curryRight(abc);
curried(3)(2)(1);
// => [1, 2, 3]
curried(2, 3)(1);
// => [1, 2, 3]
curried(1, 2, 3);
// => [1, 2, 3]
// Curried with placeholders.
curried(3)(1, _)(2);
// => [1, 2, 3]
This method is like _.curry
except that arguments are applied to func
in the manner of _.partialRight
instead of _.partial
.
The _.curryRight.placeholder
value, which defaults to _
in monolithic
builds, may be used as a placeholder for provided arguments.
Note: This method doesn’t set the “length” property of curried functions.
Underscore
Since
3.0.0
Arguments
func
(Function): The function to curry.[arity=func.length]
(number): The arity offunc
.
Returns
(Function): Returns the new curried function.
_.debounce(func, [wait=0], [options={}])
// Avoid costly calculations while the window size is in flux.
jQuery(window).on('resize', _.debounce(calculateLayout, 150));
// Invoke `sendMail` when clicked, debouncing subsequent calls.
jQuery(element).on('click', _.debounce(sendMail, 300, {
'leading': true,
'trailing': false
}));
// Ensure `batchLog` is invoked once after 1 second of debounced calls.
var debounced = _.debounce(batchLog, 250, { 'maxWait': 1000 });
var source = new EventSource('/stream');
jQuery(source).on('message', debounced);
// Cancel the trailing debounced invocation.
jQuery(window).on('popstate', debounced.cancel);
Creates a debounced function that delays invoking func
until after wait
milliseconds have elapsed since the last time the debounced function was
invoked. The debounced function comes with a cancel
method to cancel
delayed func
invocations and a flush
method to immediately invoke them.
Provide options
to indicate whether func
should be invoked on the
leading and/or trailing edge of the wait
timeout. The func
is invoked
with the last arguments provided to the debounced function. Subsequent
calls to the debounced function return the result of the last func
invocation.
Note: If leading
and trailing
options are true
, func
is
invoked on the trailing edge of the timeout only if the debounced function
is invoked more than once during the wait
timeout.
If wait
is 0
and leading
is false
, func
invocation is deferred
until to the next tick, similar to setTimeout
with a timeout of 0
.
See David Corbacho’s article
for details over the differences between _.debounce
and _.throttle
.
Underscore
Since
0.1.0
Arguments
func
(Function): The function to debounce.[wait=0]
(number): The number of milliseconds to delay.[options={}]
(Object): The options object.[options.leading=false]
(boolean): Specify invoking on the leading edge of the timeout.[options.maxWait]
(number): The maximum timefunc
is allowed to be delayed before it’s invoked.[options.trailing=true]
(boolean): Specify invoking on the trailing edge of the timeout.
Returns
(Function): Returns the new debounced function.
_.defer(func, [args])
_.defer(function(text) {
console.log(text);
}, 'deferred');
// => Logs 'deferred' after one millisecond.
Defers invoking the func
until the current call stack has cleared. Any
additional arguments are provided to func
when it’s invoked.
Underscore
Since
0.1.0
Arguments
func
(Function): The function to defer.[args]
(…*): The arguments to invokefunc
with.
Returns
(number): Returns the timer id.
_.delay(func, wait, [args])
_.delay(function(text) {
console.log(text);
}, 1000, 'later');
// => Logs 'later' after one second.
Invokes func
after wait
milliseconds. Any additional arguments are
provided to func
when it’s invoked.
Underscore
Since
0.1.0
Arguments
func
(Function): The function to delay.wait
(number): The number of milliseconds to delay invocation.[args]
(…*): The arguments to invokefunc
with.
Returns
(number): Returns the timer id.
_.flip(func)
var flipped = _.flip(function() {
return _.toArray(arguments);
});
flipped('a', 'b', 'c', 'd');
// => ['d', 'c', 'b', 'a']
Creates a function that invokes func
with arguments reversed.
Underscore
Since
4.0.0
Arguments
func
(Function): The function to flip arguments for.
Returns
(Function): Returns the new flipped function.
_.memoize(func, [resolver])
var object = { 'a': 1, 'b': 2 };
var other = { 'c': 3, 'd': 4 };
var values = _.memoize(_.values);
values(object);
// => [1, 2]
values(other);
// => [3, 4]
object.a = 2;
values(object);
// => [1, 2]
// Modify the result cache.
values.cache.set(object, ['a', 'b']);
values(object);
// => ['a', 'b']
// Replace `_.memoize.Cache`.
_.memoize.Cache = WeakMap;
Creates a function that memoizes the result of func
. If resolver
is
provided, it determines the cache key for storing the result based on the
arguments provided to the memoized function. By default, the first argument
provided to the memoized function is used as the map cache key. The func
is invoked with the this
binding of the memoized function.
Note: The cache is exposed as the cache
property on the memoized
function. Its creation may be customized by replacing the _.memoize.Cache
constructor with one whose instances implement the
Map
method interface of clear
, delete
, get
, has
, and set
.
Underscore
_.memoize(function, [hashFunction])
Since
0.1.0
Arguments
func
(Function): The function to have its output memoized.[resolver]
(Function): The function to resolve the cache key.
Returns
(Function): Returns the new memoized function.
_.negate(predicate)
function isEven(n) {
return n % 2 == 0;
}
_.filter([1, 2, 3, 4, 5, 6], _.negate(isEven));
// => [1, 3, 5]
Creates a function that negates the result of the predicate func
. The
func
predicate is invoked with the this
binding and arguments of the
created function.
Underscore
Since
3.0.0
Arguments
predicate
(Function): The predicate to negate.
Returns
(Function): Returns the new negated function.
_.once(func)
var initialize = _.once(createApplication);
initialize();
initialize();
// => `createApplication` is invoked once
Creates a function that is restricted to invoking func
once. Repeat calls
to the function return the value of the first invocation. The func
is
invoked with the this
binding and arguments of the created function.
Underscore
Since
0.1.0
Arguments
func
(Function): The function to restrict.
Returns
(Function): Returns the new restricted function.
.overArgs(func, [transforms=[.identity]])
function doubled(n) {
return n * 2;
}
function square(n) {
return n * n;
}
var func = _.overArgs(function(x, y) {
return [x, y];
}, [square, doubled]);
func(9, 3);
// => [81, 6]
func(10, 5);
// => [100, 10]
Creates a function that invokes func
with its arguments transformed.
Underscore
Since
4.0.0
Arguments
func
(Function): The function to wrap.[transforms=[_.identity]]
(…(Function|Function[])): The argument transforms.
Returns
(Function): Returns the new function.
_.partial(func, [partials])
function greet(greeting, name) {
return greeting + ' ' + name;
}
var sayHelloTo = _.partial(greet, 'hello');
sayHelloTo('fred');
// => 'hello fred'
// Partially applied with placeholders.
var greetFred = _.partial(greet, _, 'fred');
greetFred('hi');
// => 'hi fred'
Creates a function that invokes func
with partials
prepended to the
arguments it receives. This method is like _.bind
except it does not
alter the this
binding.
The _.partial.placeholder
value, which defaults to _
in monolithic
builds, may be used as a placeholder for partially applied arguments.
Note: This method doesn’t set the “length” property of partially
applied functions.
Underscore
_.partial(function, *arguments)
Since
0.2.0
Arguments
func
(Function): The function to partially apply arguments to.[partials]
(…*): The arguments to be partially applied.
Returns
(Function): Returns the new partially applied function.
_.partialRight(func, [partials])
function greet(greeting, name) {
return greeting + ' ' + name;
}
var greetFred = _.partialRight(greet, 'fred');
greetFred('hi');
// => 'hi fred'
// Partially applied with placeholders.
var sayHelloTo = _.partialRight(greet, 'hello', _);
sayHelloTo('fred');
// => 'hello fred'
This method is like _.partial
except that partially applied arguments
are appended to the arguments it receives.
The _.partialRight.placeholder
value, which defaults to _
in monolithic
builds, may be used as a placeholder for partially applied arguments.
Note: This method doesn’t set the “length” property of partially
applied functions.
Underscore
Since
1.0.0
Arguments
func
(Function): The function to partially apply arguments to.[partials]
(…*): The arguments to be partially applied.
Returns
(Function): Returns the new partially applied function.
_.rearg(func, indexes)
var rearged = _.rearg(function(a, b, c) {
return [a, b, c];
}, [2, 0, 1]);
rearged('b', 'c', 'a')
// => ['a', 'b', 'c']
Creates a function that invokes func
with arguments arranged according
to the specified indexes
where the argument value at the first index is
provided as the first argument, the argument value at the second index is
provided as the second argument, and so on.
Underscore
Since
3.0.0
Arguments
func
(Function): The function to rearrange arguments for.indexes
(…(number|number[])): The arranged argument indexes.
Returns
(Function): Returns the new function.
_.rest(func, [start=func.length-1])
var say = _.rest(function(what, names) {
return what + ' ' + _.initial(names).join(', ') +
(_.size(names) > 1 ? ', & ' : '') + _.last(names);
});
say('hello', 'fred', 'barney', 'pebbles');
// => 'hello fred, barney, & pebbles'
Creates a function that invokes func
with the this
binding of the
created function and arguments from start
and beyond provided as
an array.
Note: This method is based on the
rest parameter.
Underscore
Since
4.0.0
Arguments
func
(Function): The function to apply a rest parameter to.[start=func.length-1]
(number): The start position of the rest parameter.
Returns
(Function): Returns the new function.
_.spread(func, [start=0])
var say = _.spread(function(who, what) {
return who + ' says ' + what;
});
say(['fred', 'hello']);
// => 'fred says hello'
var numbers = Promise.all([
Promise.resolve(40),
Promise.resolve(36)
]);
numbers.then(_.spread(function(x, y) {
return x + y;
}));
// => a Promise of 76
Creates a function that invokes func
with the this
binding of the
create function and an array of arguments much like
Function#apply
.
Note: This method is based on the
spread operator.
Underscore
Since
3.2.0
Arguments
func
(Function): The function to spread arguments over.[start=0]
(number): The start position of the spread.
Returns
(Function): Returns the new function.
_.throttle(func, [wait=0], [options={}])
// Avoid excessively updating the position while scrolling.
jQuery(window).on('scroll', _.throttle(updatePosition, 100));
// Invoke `renewToken` when the click event is fired, but not more than once every 5 minutes.
var throttled = _.throttle(renewToken, 300000, { 'trailing': false });
jQuery(element).on('click', throttled);
// Cancel the trailing throttled invocation.
jQuery(window).on('popstate', throttled.cancel);
Creates a throttled function that only invokes func
at most once per
every wait
milliseconds. The throttled function comes with a cancel
method to cancel delayed func
invocations and a flush
method to
immediately invoke them. Provide options
to indicate whether func
should be invoked on the leading and/or trailing edge of the wait
timeout. The func
is invoked with the last arguments provided to the
throttled function. Subsequent calls to the throttled function return the
result of the last func
invocation.
Note: If leading
and trailing
options are true
, func
is
invoked on the trailing edge of the timeout only if the throttled function
is invoked more than once during the wait
timeout.
If wait
is 0
and leading
is false
, func
invocation is deferred
until to the next tick, similar to setTimeout
with a timeout of 0
.
See David Corbacho’s article
for details over the differences between _.throttle
and _.debounce
.
Underscore
Since
0.1.0
Arguments
func
(Function): The function to throttle.[wait=0]
(number): The number of milliseconds to throttle invocations to.[options={}]
(Object): The options object.[options.leading=true]
(boolean): Specify invoking on the leading edge of the timeout.[options.trailing=true]
(boolean): Specify invoking on the trailing edge of the timeout.
Returns
(Function): Returns the new throttled function.
_.unary(func)
_.map(['6', '8', '10'], _.unary(parseInt));
// => [6, 8, 10]
Creates a function that accepts up to one argument, ignoring any additional arguments.
Underscore
Since
4.0.0
Arguments
func
(Function): The function to cap arguments for.
Returns
(Function): Returns the new capped function.
_.wrap(value, [wrapper=identity])
var p = _.wrap(_.escape, function(func, text) {
return '<p>' + func(text) + '</p>';
});
p('fred, barney, & pebbles');
// => '<p>fred, barney, & pebbles</p>'
Creates a function that provides value
to wrapper
as its first
argument. Any additional arguments provided to the function are appended
to those provided to the wrapper
. The wrapper is invoked with the this
binding of the created function.
Underscore
Since
0.1.0
Arguments
value
(*): The value to wrap.[wrapper=identity]
(Function): The wrapper function.
Returns
(Function): Returns the new function.
Lang
_.castArray(value)
_.castArray(1);
// => [1]
_.castArray({ 'a': 1 });
// => [{ 'a': 1 }]
_.castArray('abc');
// => ['abc']
_.castArray(null);
// => [null]
_.castArray(undefined);
// => [undefined]
_.castArray();
// => []
var array = [1, 2, 3];
console.log(_.castArray(array) === array);
// => true
Casts value
as an array if it’s not one.
Underscore
Since
4.4.0
Arguments
value
(*): The value to inspect.
Returns
(Array): Returns the cast array.
_.clone(value)
var objects = [{ 'a': 1 }, { 'b': 2 }];
var shallow = _.clone(objects);
console.log(shallow[0] === objects[0]);
// => true
//Underscore
_.clone({name: 'moe'});
=> {name: 'moe'}
Creates a shallow clone of value
.
Note: This method is loosely based on the
structured clone algorithm
and supports cloning arrays, array buffers, booleans, date objects, maps,
numbers, Object
objects, regexes, sets, strings, symbols, and typed
arrays. The own enumerable properties of arguments
objects are cloned
as plain objects. An empty object is returned for uncloneable values such
as error objects, functions, DOM nodes, and WeakMaps.
Underscore
_.clone(object)
Since
0.1.0
Arguments
value
(*): The value to clone.
Returns
(*): Returns the cloned value.
_.cloneDeep(value)
function customizer(value) {
if (_.isElement(value)) {
return value.cloneNode(true);
}
}
var el = _.cloneDeepWith(document.body, customizer);
console.log(el === document.body);
// => false
console.log(el.nodeName);
// => 'BODY'
console.log(el.childNodes.length);
// => 20
var objects = [{ 'a': 1 }, { 'b': 2 }];
var deep = _.cloneDeep(objects);
console.log(deep[0] === objects[0]);
// => false
This method is like _.clone
except that it recursively clones value
.
Underscore
Since
1.0.0
Arguments
value
(*): The value to recursively clone.
Returns
(*): Returns the deep cloned value.
_.cloneDeepWith(value, [customizer])
This method is like _.cloneWith
except that it recursively clones value
.
Underscore
Since
4.0.0
Arguments
value
(*): The value to recursively clone.[customizer]
(Function): The function to customize cloning.
Returns
(*): Returns the deep cloned value.
_.cloneWith(value, [customizer])
function customizer(value) {
if (_.isElement(value)) {
return value.cloneNode(false);
}
}
var el = _.cloneWith(document.body, customizer);
console.log(el === document.body);
// => false
console.log(el.nodeName);
// => 'BODY'
console.log(el.childNodes.length);
// => 0
This method is like _.clone
except that it accepts customizer
which
is invoked to produce the cloned value. If customizer
returns undefined
,
cloning is handled by the method instead. The customizer
is invoked with
up to four arguments; (value [, index|key, object, stack]).
Underscore
Since
4.0.0
Arguments
value
(*): The value to clone.[customizer]
(Function): The function to customize cloning.
Returns
(*): Returns the cloned value.
_.conformsTo(object, source)
var object = { 'a': 1, 'b': 2 };
_.conformsTo(object, { 'b': function(n) { return n > 1; } });
// => true
_.conformsTo(object, { 'b': function(n) { return n > 2; } });
// => false
Checks if object
conforms to source
by invoking the predicate
properties of source
with the corresponding property values of object
.
Note: This method is equivalent to _.conforms
when source
is
partially applied.
Underscore
Since
4.14.0
Arguments
object
(Object): The object to inspect.source
(Object): The object of property predicates to conform to.
Returns
(boolean): Returns true
if object
conforms, else false
.
_.eq(value, other)
var object = { 'a': 1 };
var other = { 'a': 1 };
_.eq(object, object);
// => true
_.eq(object, other);
// => false
_.eq('a', 'a');
// => true
_.eq('a', Object('a'));
// => false
_.eq(NaN, NaN);
// => true
Performs a
SameValueZero
comparison between two values to determine if they are equivalent.
Underscore
Since
4.0.0
Arguments
value
(*): The value to compare.other
(*): The other value to compare.
Returns
(boolean): Returns true
if the values are equivalent, else false
.
_.gt(value, other)
_.gt(3, 1);
// => true
_.gt(3, 3);
// => false
_.gt(1, 3);
// => false
Checks if value
is greater than other
.
Underscore
Since
3.9.0
Arguments
value
(*): The value to compare.other
(*): The other value to compare.
Returns
(boolean): Returns true
if value
is greater than other
, else false
.
_.gte(value, other)
_.gte(3, 1);
// => true
_.gte(3, 3);
// => true
_.gte(1, 3);
// => false
Checks if value
is greater than or equal to other
.
Underscore
Since
3.9.0
Arguments
value
(*): The value to compare.other
(*): The other value to compare.
Returns
(boolean): Returns true
if value
is greater than or equal to other
, else false
.
_.isArguments(value)
_.isArguments(function() { return arguments; }());
// => true
_.isArguments([1, 2, 3]);
// => false
Checks if value
is likely an arguments
object.
Underscore
_.isArguments(object)
Since
0.1.0
Arguments
value
(*): The value to check.
Returns
(boolean): Returns true
if value
is an arguments
object, else false
.
_.isArray(value)
_.isArray([1, 2, 3]);
// => true
_.isArray(document.body.children);
// => false
_.isArray('abc');
// => false
_.isArray(_.noop);
// => false
Checks if value
is classified as an Array
object.
Underscore
_.isArray(object)
Since
0.1.0
Arguments
value
(*): The value to check.
Returns
(boolean): Returns true
if value
is an array, else false
.
_.isArrayBuffer(value)
_.isArrayBuffer(new ArrayBuffer(2));
// => true
_.isArrayBuffer(new Array(2));
// => false
Checks if value
is classified as an ArrayBuffer
object.
Underscore
Since
4.3.0
Arguments
value
(*): The value to check.
Returns
(boolean): Returns true
if value
is an array buffer, else false
.
_.isArrayLike(value)
_.isArrayLike([1, 2, 3]);
// => true
_.isArrayLike(document.body.children);
// => true
_.isArrayLike('abc');
// => true
_.isArrayLike(_.noop);
// => false
Checks if value
is array-like. A value is considered array-like if it’s
not a function and has a value.length
that’s an integer greater than or
equal to 0
and less than or equal to Number.MAX_SAFE_INTEGER
.
Underscore
Since
4.0.0
Arguments
value
(*): The value to check.
Returns
(boolean): Returns true
if value
is array-like, else false
.
_.isArrayLikeObject(value)
_.isArrayLikeObject([1, 2, 3]);
// => true
_.isArrayLikeObject(document.body.children);
// => true
_.isArrayLikeObject('abc');
// => false
_.isArrayLikeObject(_.noop);
// => false
This method is like _.isArrayLike
except that it also checks if value
is an object.
Underscore
Since
4.0.0
Arguments
value
(*): The value to check.
Returns
(boolean): Returns true
if value
is an array-like object, else false
.
_.isBoolean(value)
_.isBoolean(false);
// => true
_.isBoolean(null);
// => false
Checks if value
is classified as a boolean primitive or object.
Underscore
Since
0.1.0
Arguments
value
(*): The value to check.
Returns
(boolean): Returns true
if value
is a boolean, else false
.
_.isBuffer(value)
_.isBuffer(new Buffer(2));
// => true
_.isBuffer(new Uint8Array(2));
// => false
Checks if value
is a buffer.
Underscore
Since
4.3.0
Arguments
value
(*): The value to check.
Returns
(boolean): Returns true
if value
is a buffer, else false
.
_.isDate(value)
_.isDate(new Date);
// => true
_.isDate('Mon April 23 2012');
// => false
Checks if value
is classified as a Date
object.
Underscore
Since
0.1.0
Arguments
value
(*): The value to check.
Returns
(boolean): Returns true
if value
is a date object, else false
.
_.isElement(value)
_.isElement(document.body);
// => true
_.isElement('<body>');
// => false
Checks if value
is likely a DOM element.
Underscore
Since
0.1.0
Arguments
value
(*): The value to check.
Returns
(boolean): Returns true
if value
is a DOM element, else false
.
_.isEmpty(value)
_.isEmpty(null);
// => true
_.isEmpty(true);
// => true
_.isEmpty(1);
// => true
_.isEmpty([1, 2, 3]);
// => false
_.isEmpty({ 'a': 1 });
// => false
Checks if value
is an empty object, collection, map, or set.
Objects are considered empty if they have no own enumerable string keyed
properties.
Array-like values such as arguments
objects, arrays, buffers, strings, or
jQuery-like collections are considered empty if they have a length
of 0
.
Similarly, maps and sets are considered empty if they have a size
of 0
.
Underscore
Since
0.1.0
Arguments
value
(*): The value to check.
Returns
(boolean): Returns true
if value
is empty, else false
.
_.isEqual(value, other)
var object = { 'a': 1 };
var other = { 'a': 1 };
_.isEqual(object, other);
// => true
object === other;
// => false
Performs a deep comparison between two values to determine if they are
equivalent.
Note: This method supports comparing arrays, array buffers, booleans,
date objects, error objects, maps, numbers, Object
objects, regexes,
sets, strings, symbols, and typed arrays. Object
objects are compared
by their own, not inherited, enumerable properties. Functions and DOM
nodes are compared by strict equality, i.e. ===
.
Underscore
Since
0.1.0
Arguments
value
(*): The value to compare.other
(*): The other value to compare.
Returns
(boolean): Returns true
if the values are equivalent, else false
.
_.isEqualWith(value, other, [customizer])
function isGreeting(value) {
return /^h(?:i|ello)$/.test(value);
}
function customizer(objValue, othValue) {
if (isGreeting(objValue) && isGreeting(othValue)) {
return true;
}
}
var array = ['hello', 'goodbye'];
var other = ['hi', 'goodbye'];
_.isEqualWith(array, other, customizer);
// => true
This method is like _.isEqual
except that it accepts customizer
which
is invoked to compare values. If customizer
returns undefined
, comparisons
are handled by the method instead. The customizer
is invoked with up to
six arguments: (objValue, othValue [, index|key, object, other, stack]).
Underscore
Since
4.0.0
Arguments
value
(*): The value to compare.other
(*): The other value to compare.[customizer]
(Function): The function to customize comparisons.
Returns
(boolean): Returns true
if the values are equivalent, else false
.
_.isError(value)
_.isError(new Error);
// => true
_.isError(Error);
// => false
Checks if value
is an Error
, EvalError
, RangeError
, ReferenceError
,
SyntaxError
, TypeError
, or URIError
object.
Underscore
Since
3.0.0
Arguments
value
(*): The value to check.
Returns
(boolean): Returns true
if value
is an error object, else false
.
_.isFinite(value)
_.isFinite(3);
// => true
_.isFinite(Number.MIN_VALUE);
// => true
_.isFinite(Infinity);
// => false
_.isFinite('3');
// => false
Checks if value
is a finite primitive number.
Note: This method is based on
Number.isFinite
.
Underscore
Since
0.1.0
Arguments
value
(*): The value to check.
Returns
(boolean): Returns true
if value
is a finite number, else false
.
_.isFunction(value)
_.isFunction(_);
// => true
_.isFunction(/abc/);
// => false
Checks if value
is classified as a Function
object.
Underscore
Since
0.1.0
Arguments
value
(*): The value to check.
Returns
(boolean): Returns true
if value
is a function, else false
.
_.isInteger(value)
_.isInteger(3);
// => true
_.isInteger(Number.MIN_VALUE);
// => false
_.isInteger(Infinity);
// => false
_.isInteger('3');
// => false
Checks if value
is an integer.
Note: This method is based on
Number.isInteger
.
Underscore
Since
4.0.0
Arguments
value
(*): The value to check.
Returns
(boolean): Returns true
if value
is an integer, else false
.
_.isLength(value)
_.isLength(3);
// => true
_.isLength(Number.MIN_VALUE);
// => false
_.isLength(Infinity);
// => false
_.isLength('3');
// => false
Checks if value
is a valid array-like length.
Note: This method is loosely based on
ToLength
.
Underscore
Since
4.0.0
Arguments
value
(*): The value to check.
Returns
(boolean): Returns true
if value
is a valid length, else false
.
_.isMap(value)
_.isMap(new Map);
// => true
_.isMap(new WeakMap);
// => false
Checks if value
is classified as a Map
object.
Underscore
Since
4.3.0
Arguments
value
(*): The value to check.
Returns
(boolean): Returns true
if value
is a map, else false
.
_.isMatch(object, source)
var object = { 'a': 1, 'b': 2 };
_.isMatch(object, { 'b': 2 });
// => true
_.isMatch(object, { 'b': 1 });
// => false
Performs a partial deep comparison between object
and source
to
determine if object
contains equivalent property values.
Note: This method is equivalent to _.matches
when source
is
partially applied.
Partial comparisons will match empty array and empty object source
values against any array or object value, respectively. See _.isEqual
for a list of supported value comparisons.
Underscore
Since
3.0.0
Arguments
object
(Object): The object to inspect.source
(Object): The object of property values to match.
Returns
(boolean): Returns true
if object
is a match, else false
.
_.isMatchWith(object, source, [customizer])
function isGreeting(value) {
return /^h(?:i|ello)$/.test(value);
}
function customizer(objValue, srcValue) {
if (isGreeting(objValue) && isGreeting(srcValue)) {
return true;
}
}
var object = { 'greeting': 'hello' };
var source = { 'greeting': 'hi' };
_.isMatchWith(object, source, customizer);
// => true
This method is like _.isMatch
except that it accepts customizer
which
is invoked to compare values. If customizer
returns undefined
, comparisons
are handled by the method instead. The customizer
is invoked with five
arguments: (objValue, srcValue, index|key, object, source).
Underscore
Since
4.0.0
Arguments
object
(Object): The object to inspect.source
(Object): The object of property values to match.[customizer]
(Function): The function to customize comparisons.
Returns
(boolean): Returns true
if object
is a match, else false
.
_.isNaN(value)
_.isNaN(NaN);
// => true
_.isNaN(new Number(NaN));
// => true
isNaN(undefined);
// => true
_.isNaN(undefined);
// => false
Checks if value
is NaN
.
Note: This method is based on
Number.isNaN
and is not the same as
global isNaN
which returns true
for
undefined
and other non-number values.
Underscore
Since
0.1.0
Arguments
value
(*): The value to check.
Returns
(boolean): Returns true
if value
is NaN
, else false
.
_.isNative(value)
_.isNative(Array.prototype.push);
// => true
_.isNative(_);
// => false
Checks if value
is a pristine native function.
Note: This method can’t reliably detect native functions in the presence
of the core-js package because core-js circumvents this kind of detection.
Despite multiple requests, the core-js maintainer has made it clear: any
attempt to fix the detection will be obstructed. As a result, we’re left
with little choice but to throw an error. Unfortunately, this also affects
packages, like babel-polyfill,
which rely on core-js.
Underscore
Since
3.0.0
Arguments
value
(*): The value to check.
Returns
(boolean): Returns true
if value
is a native function, else false
.
_.isNil(value)
_.isNil(null);
// => true
_.isNil(void 0);
// => true
_.isNil(NaN);
// => false
Checks if value
is null
or undefined
.
Underscore
Since
4.0.0
Arguments
value
(*): The value to check.
Returns
(boolean): Returns true
if value
is nullish, else false
.
_.isNull(value)
_.isNull(null);
// => true
_.isNull(void 0);
// => false
Checks if value
is null
.
Underscore
Since
0.1.0
Arguments
value
(*): The value to check.
Returns
(boolean): Returns true
if value
is null
, else false
.
_.isNumber(value)
_.isNumber(3);
// => true
_.isNumber(Number.MIN_VALUE);
// => true
_.isNumber(Infinity);
// => true
_.isNumber('3');
// => false
Checks if value
is classified as a Number
primitive or object.
Note: To exclude Infinity
, -Infinity
, and NaN
, which are
classified as numbers, use the _.isFinite
method.
Underscore
Since
0.1.0
Arguments
value
(*): The value to check.
Returns
(boolean): Returns true
if value
is a number, else false
.
_.isObject(value)
_.isObject({});
// => true
_.isObject([1, 2, 3]);
// => true
_.isObject(_.noop);
// => true
_.isObject(null);
// => false
Checks if value
is the
language type
of Object
. (e.g. arrays, functions, objects, regexes, new Number(0)
, and new String('')
)
Since
0.1.0
Arguments
value
(*): The value to check.
Returns
(boolean): Returns true
if value
is an object, else false
.
_.isObjectLike(value)
_.isObjectLike({});
// => true
_.isObjectLike([1, 2, 3]);
// => true
_.isObjectLike(_.noop);
// => false
_.isObjectLike(null);
// => false
Checks if value
is object-like. A value is object-like if it’s not null
and has a typeof
result of “object”.
Underscore
Since
4.0.0
Arguments
value
(*): The value to check.
Returns
(boolean): Returns true
if value
is object-like, else false
.
_.isPlainObject(value)
function Foo() {
this.a = 1;
}
_.isPlainObject(new Foo);
// => false
_.isPlainObject([1, 2, 3]);
// => false
_.isPlainObject({ 'x': 0, 'y': 0 });
// => true
_.isPlainObject(Object.create(null));
// => true
Checks if value
is a plain object, that is, an object created by the
Object
constructor or one with a [[Prototype]]
of null
.
Underscore
Since
0.8.0
Arguments
value
(*): The value to check.
Returns
(boolean): Returns true
if value
is a plain object, else false
.
_.isRegExp(value)
_.isRegExp(/abc/);
// => true
_.isRegExp('/abc/');
// => false
Checks if value
is classified as a RegExp
object.
Underscore
Since
0.1.0
Arguments
value
(*): The value to check.
Returns
(boolean): Returns true
if value
is a regexp, else false
.
_.isSafeInteger(value)
_.isSafeInteger(3);
// => true
_.isSafeInteger(Number.MIN_VALUE);
// => false
_.isSafeInteger(Infinity);
// => false
_.isSafeInteger('3');
// => false
Checks if value
is a safe integer. An integer is safe if it’s an IEEE-754
double precision number which isn’t the result of a rounded unsafe integer.
Note: This method is based on
Number.isSafeInteger
.
Underscore
Since
4.0.0
Arguments
value
(*): The value to check.
Returns
(boolean): Returns true
if value
is a safe integer, else false
.
_.isSet(value)
_.isSet(new Set);
// => true
_.isSet(new WeakSet);
// => false
Checks if value
is classified as a Set
object.
Underscore
Since
4.3.0
Arguments
value
(*): The value to check.
Returns
(boolean): Returns true
if value
is a set, else false
.
_.isString(value)
_.isString('abc');
// => true
_.isString(1);
// => false
Checks if value
is classified as a String
primitive or object.
Underscore
Since
0.1.0
Arguments
value
(*): The value to check.
Returns
(boolean): Returns true
if value
is a string, else false
.
_.isSymbol(value)
_.isSymbol(Symbol.iterator);
// => true
_.isSymbol('abc');
// => false
Checks if value
is classified as a Symbol
primitive or object.
Underscore
Since
4.0.0
Arguments
value
(*): The value to check.
Returns
(boolean): Returns true
if value
is a symbol, else false
.
_.isTypedArray(value)
_.isTypedArray(new Uint8Array);
// => true
_.isTypedArray([]);
// => false
Checks if value
is classified as a typed array.
Underscore
Since
3.0.0
Arguments
value
(*): The value to check.
Returns
(boolean): Returns true
if value
is a typed array, else false
.
_.isUndefined(value)
_.isUndefined(void 0);
// => true
_.isUndefined(null);
// => false
Checks if value
is undefined
.
Underscore
Since
0.1.0
Arguments
value
(*): The value to check.
Returns
(boolean): Returns true
if value
is undefined
, else false
.
_.isWeakMap(value)
_.isWeakMap(new WeakMap);
// => true
_.isWeakMap(new Map);
// => false
Checks if value
is classified as a WeakMap
object.
Underscore
Since
4.3.0
Arguments
value
(*): The value to check.
Returns
(boolean): Returns true
if value
is a weak map, else false
.
_.isWeakSet(value)
_.isWeakSet(new WeakSet);
// => true
_.isWeakSet(new Set);
// => false
Checks if value
is classified as a WeakSet
object.
Underscore
Since
4.3.0
Arguments
value
(*): The value to check.
Returns
(boolean): Returns true
if value
is a weak set, else false
.
_.lt(value, other)
_.lt(1, 3);
// => true
_.lt(3, 3);
// => false
_.lt(3, 1);
// => false
Checks if value
is less than other
.
Underscore
Since
3.9.0
Arguments
value
(*): The value to compare.other
(*): The other value to compare.
Returns
(boolean): Returns true
if value
is less than other
, else false
.
_.lte(value, other)
_.lte(1, 3);
// => true
_.lte(3, 3);
// => true
_.lte(3, 1);
// => false
Checks if value
is less than or equal to other
.
Underscore
Since
3.9.0
Arguments
value
(*): The value to compare.other
(*): The other value to compare.
Returns
(boolean): Returns true
if value
is less than or equal to other
, else false
.
_.toArray(value)
_.toArray({ 'a': 1, 'b': 2 });
// => [1, 2]
_.toArray('abc');
// => ['a', 'b', 'c']
_.toArray(1);
// => []
_.toArray(null);
// => []
Converts value
to an array.
Underscore
_.toArray(list)
Since
0.1.0
Arguments
value
(*): The value to convert.
Returns
(Array): Returns the converted array.
_.toFinite(value)
_.toFinite(3.2);
// => 3.2
_.toFinite(Number.MIN_VALUE);
// => 5e-324
_.toFinite(Infinity);
// => 1.7976931348623157e+308
_.toFinite('3.2');
// => 3.2
Converts value
to a finite number.
Underscore
Since
4.12.0
Arguments
value
(*): The value to convert.
Returns
(number): Returns the converted number.
_.toInteger(value)
_.toInteger(3.2);
// => 3
_.toInteger(Number.MIN_VALUE);
// => 0
_.toInteger(Infinity);
// => 1.7976931348623157e+308
_.toInteger('3.2');
// => 3
Converts value
to an integer.
Note: This method is loosely based on
ToInteger
.
Underscore
Since
4.0.0
Arguments
value
(*): The value to convert.
Returns
(number): Returns the converted integer.
_.toLength(value)
_.toLength(3.2);
// => 3
_.toLength(Number.MIN_VALUE);
// => 0
_.toLength(Infinity);
// => 4294967295
_.toLength('3.2');
// => 3
Converts value
to an integer suitable for use as the length of an
array-like object.
Note: This method is based on
ToLength
.
Underscore
Since
4.0.0
Arguments
value
(*): The value to convert.
Returns
(number): Returns the converted integer.
_.toNumber(value)
_.toNumber(3.2);
// => 3.2
_.toNumber(Number.MIN_VALUE);
// => 5e-324
_.toNumber(Infinity);
// => Infinity
_.toNumber('3.2');
// => 3.2
Converts value
to a number.
Underscore
Since
4.0.0
Arguments
value
(*): The value to process.
Returns
(number): Returns the number.
_.toPlainObject(value)
function Foo() {
this.b = 2;
}
Foo.prototype.c = 3;
_.assign({ 'a': 1 }, new Foo);
// => { 'a': 1, 'b': 2 }
_.assign({ 'a': 1 }, _.toPlainObject(new Foo));
// => { 'a': 1, 'b': 2, 'c': 3 }
Converts value
to a plain object flattening inherited enumerable string
keyed properties of value
to own properties of the plain object.
Underscore
Since
3.0.0
Arguments
value
(*): The value to convert.
Returns
(Object): Returns the converted plain object.
_.toSafeInteger(value)
_.toSafeInteger(3.2);
// => 3
_.toSafeInteger(Number.MIN_VALUE);
// => 0
_.toSafeInteger(Infinity);
// => 9007199254740991
_.toSafeInteger('3.2');
// => 3
Converts value
to a safe integer. A safe integer can be compared and
represented correctly.
Underscore
Since
4.0.0
Arguments
value
(*): The value to convert.
Returns
(number): Returns the converted integer.
_.toString(value)
_.toString(null);
// => ''
_.toString(-0);
// => '-0'
_.toString([1, 2, 3]);
// => '1,2,3'
Converts value
to a string. An empty string is returned for null
and undefined
values. The sign of -0
is preserved.
Underscore
Since
4.0.0
Arguments
value
(*): The value to convert.
Returns
(string): Returns the converted string.
Math
_.add(augend, addend)
_.add(6, 4);
// => 10
Adds two numbers.
Underscore
Since
3.4.0
Arguments
augend
(number): The first number in an addition.addend
(number): The second number in an addition.
Returns
(number): Returns the total.
_.ceil(number, [precision=0])
_.ceil(4.006);
// => 5
_.ceil(6.004, 2);
// => 6.01
_.ceil(6040, -2);
// => 6100
Computes number
rounded up to precision
.
Underscore
Since
3.10.0
Arguments
number
(number): The number to round up.[precision=0]
(number): The precision to round up to.
Returns
(number): Returns the rounded up number.
_.divide(dividend, divisor)
_.divide(6, 4);
// => 1.5
Divide two numbers.
Underscore
Since
4.7.0
Arguments
dividend
(number): The first number in a division.divisor
(number): The second number in a division.
Returns
(number): Returns the quotient.
_.floor(number, [precision=0])
_.floor(4.006);
// => 4
_.floor(0.046, 2);
// => 0.04
_.floor(4060, -2);
// => 4000
Computes number
rounded down to precision
.
Underscore
Since
3.10.0
Arguments
number
(number): The number to round down.[precision=0]
(number): The precision to round down to.
Returns
(number): Returns the rounded down number.
_.max(array)
_.max([4, 2, 8, 6]);
// => 8
_.max([]);
// => undefined
Computes the maximum value of array
. If array
is empty or falsey,
undefined
is returned.
Underscore
Since
0.1.0
Arguments
array
(Array): The array to iterate over.
Returns
(*): Returns the maximum value.
.maxBy(array, [iteratee=.identity])
var objects = [{ 'n': 1 }, { 'n': 2 }];
_.maxBy(objects, function(o) { return o.n; });
// => { 'n': 2 }
// The `_.property` iteratee shorthand.
_.maxBy(objects, 'n');
// => { 'n': 2 }
This method is like _.max
except that it accepts iteratee
which is
invoked for each element in array
to generate the criterion by which
the value is ranked. The iteratee is invoked with one argument: (value).
Underscore
Since
4.0.0
Arguments
array
(Array): The array to iterate over.[iteratee=_.identity]
(Function): The iteratee invoked per element.
Returns
(*): Returns the maximum value.
_.mean(array)
_.mean([4, 2, 8, 6]);
// => 5
Computes the mean of the values in array
.
Underscore
Since
4.0.0
Arguments
array
(Array): The array to iterate over.
Returns
(number): Returns the mean.
.meanBy(array, [iteratee=.identity])
var objects = [{ 'n': 4 }, { 'n': 2 }, { 'n': 8 }, { 'n': 6 }];
_.meanBy(objects, function(o) { return o.n; });
// => 5
// The `_.property` iteratee shorthand.
_.meanBy(objects, 'n');
// => 5
This method is like _.mean
except that it accepts iteratee
which is
invoked for each element in array
to generate the value to be averaged.
The iteratee is invoked with one argument: (value).
Underscore
Since
4.7.0
Arguments
array
(Array): The array to iterate over.[iteratee=_.identity]
(Function): The iteratee invoked per element.
Returns
(number): Returns the mean.
_.min(array)
_.min([4, 2, 8, 6]);
// => 2
_.min([]);
// => undefined
Computes the minimum value of array
. If array
is empty or falsey,
undefined
is returned.
Underscore
Since
0.1.0
Arguments
array
(Array): The array to iterate over.
Returns
(*): Returns the minimum value.
.minBy(array, [iteratee=.identity])
var objects = [{ 'n': 1 }, { 'n': 2 }];
_.minBy(objects, function(o) { return o.n; });
// => { 'n': 1 }
// The `_.property` iteratee shorthand.
_.minBy(objects, 'n');
// => { 'n': 1 }
This method is like _.min
except that it accepts iteratee
which is
invoked for each element in array
to generate the criterion by which
the value is ranked. The iteratee is invoked with one argument: (value).
Underscore
Since
4.0.0
Arguments
array
(Array): The array to iterate over.[iteratee=_.identity]
(Function): The iteratee invoked per element.
Returns
(*): Returns the minimum value.
_.multiply(multiplier, multiplicand)
_.multiply(6, 4);
// => 24
Multiply two numbers.
Underscore
Since
4.7.0
Arguments
multiplier
(number): The first number in a multiplication.multiplicand
(number): The second number in a multiplication.
Returns
(number): Returns the product.
_.round(number, [precision=0])
_.round(4.006);
// => 4
_.round(4.006, 2);
// => 4.01
_.round(4060, -2);
// => 4100
Computes number
rounded to precision
.
Underscore
Since
3.10.0
Arguments
number
(number): The number to round.[precision=0]
(number): The precision to round to.
Returns
(number): Returns the rounded number.
_.subtract(minuend, subtrahend)
_.subtract(6, 4);
// => 2
Subtract two numbers.
Underscore
Since
4.0.0
Arguments
minuend
(number): The first number in a subtraction.subtrahend
(number): The second number in a subtraction.
Returns
(number): Returns the difference.
_.sum(array)
_.sum([4, 2, 8, 6]);
// => 20
Computes the sum of the values in array
.
Underscore
Since
3.4.0
Arguments
array
(Array): The array to iterate over.
Returns
(number): Returns the sum.
.sumBy(array, [iteratee=.identity])
var objects = [{ 'n': 4 }, { 'n': 2 }, { 'n': 8 }, { 'n': 6 }];
_.sumBy(objects, function(o) { return o.n; });
// => 20
// The `_.property` iteratee shorthand.
_.sumBy(objects, 'n');
// => 20
This method is like _.sum
except that it accepts iteratee
which is
invoked for each element in array
to generate the value to be summed.
The iteratee is invoked with one argument: (value).
Underscore
Since
4.0.0
Arguments
array
(Array): The array to iterate over.[iteratee=_.identity]
(Function): The iteratee invoked per element.
Returns
(number): Returns the sum.
Number
_.clamp(number, [lower], upper)
_.clamp(-10, -5, 5);
// => -5
_.clamp(10, -5, 5);
// => 5
Clamps number
within the inclusive lower
and upper
bounds.
Underscore
Since
4.0.0
Arguments
number
(number): The number to clamp.[lower]
(number): The lower bound.upper
(number): The upper bound.
Returns
(number): Returns the clamped number.
_.inRange(number, [start=0], end)
_.inRange(3, 2, 4);
// => true
_.inRange(4, 8);
// => true
_.inRange(4, 2);
// => false
_.inRange(2, 2);
// => false
_.inRange(1.2, 2);
// => true
_.inRange(5.2, 4);
// => false
_.inRange(-3, -2, -6);
// => true
Checks if n
is between start
and up to, but not including, end
. If
end
is not specified, it’s set to start
with start
then set to 0
.
If start
is greater than end
the params are swapped to support
negative ranges.
Underscore
Since
3.3.0
Arguments
number
(number): The number to check.[start=0]
(number): The start of the range.end
(number): The end of the range.
Returns
(boolean): Returns true
if number
is in the range, else false
.
_.random([lower=0], [upper=1], [floating])
_.random(0, 5);
// => an integer between 0 and 5
_.random(5);
// => also an integer between 0 and 5
_.random(5, true);
// => a floating-point number between 0 and 5
_.random(1.2, 5.2);
// => a floating-point number between 1.2 and 5.2
Produces a random number between the inclusive lower
and upper
bounds.
If only one argument is provided a number between 0
and the given number
is returned. If floating
is true
, or either lower
or upper
are
floats, a floating-point number is returned instead of an integer.
Note: JavaScript follows the IEEE-754 standard for resolving
floating-point values which can produce unexpected results.
Underscore
Since
0.7.0
Arguments
[lower=0]
(number): The lower bound.[upper=1]
(number): The upper bound.[floating]
(boolean): Specify returning a floating-point number.
Returns
(number): Returns the random number.
Object
_.assign(object, [sources])
function Foo() {
this.a = 1;
}
function Bar() {
this.c = 3;
}
Foo.prototype.b = 2;
Bar.prototype.d = 4;
_.assign({ 'a': 0 }, new Foo, new Bar);
// => { 'a': 1, 'c': 3 }
Assigns own enumerable string keyed properties of source objects to the
destination object. Source objects are applied from left to right.
Subsequent sources overwrite property assignments of previous sources.
Note: This method mutates object
and is loosely based on
Object.assign
.
Underscore
_.extendOwn(destination, *sources)
Alias: assign
Like extend, but only copies own properties over to the destination object.
Since
0.10.0
Arguments
object
(Object): The destination object.[sources]
(…Object): The source objects.
Returns
(Object): Returns object
.
_.assignIn(object, [sources])
function Foo() {
this.a = 1;
}
function Bar() {
this.c = 3;
}
Foo.prototype.b = 2;
Bar.prototype.d = 4;
_.assignIn({ 'a': 0 }, new Foo, new Bar);
// => { 'a': 1, 'b': 2, 'c': 3, 'd': 4 }
This method is like _.assign
except that it iterates over own and
inherited source properties.
Note: This method mutates object
.
Underscore
_.extend(destination, *sources)
Copes own and inherited properties to destination object.
Underscore
Since
4.0.0
Aliases
_.extend
Arguments
object
(Object): The destination object.[sources]
(…Object): The source objects.
Returns
(Object): Returns object
.
_.assignInWith(object, sources, [customizer])
function customizer(objValue, srcValue) {
return _.isUndefined(objValue) ? srcValue : objValue;
}
var defaults = _.partialRight(_.assignInWith, customizer);
defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 });
// => { 'a': 1, 'b': 2 }
This method is like _.assignIn
except that it accepts customizer
which is invoked to produce the assigned values. If customizer
returns
undefined
, assignment is handled by the method instead. The customizer
is invoked with five arguments: (objValue, srcValue, key, object, source).
Note: This method mutates object
.
Underscore
Since
4.0.0
Aliases
_.extendWith
Arguments
object
(Object): The destination object.sources
(…Object): The source objects.[customizer]
(Function): The function to customize assigned values.
Returns
(Object): Returns object
.
_.assignWith(object, sources, [customizer])
function customizer(objValue, srcValue) {
return _.isUndefined(objValue) ? srcValue : objValue;
}
var defaults = _.partialRight(_.assignWith, customizer);
defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 });
// => { 'a': 1, 'b': 2 }
This method is like _.assign
except that it accepts customizer
which is invoked to produce the assigned values. If customizer
returns
undefined
, assignment is handled by the method instead. The customizer
is invoked with five arguments: (objValue, srcValue, key, object, source).
Note: This method mutates object
.
Underscore
Since
4.0.0
Arguments
object
(Object): The destination object.sources
(…Object): The source objects.[customizer]
(Function): The function to customize assigned values.
Returns
(Object): Returns object
.
_.at(object, [paths])
var object = { 'a': [{ 'b': { 'c': 3 } }, 4] };
_.at(object, ['a[0].b.c', 'a[1]']);
// => [3, 4]
Creates an array of values corresponding to paths
of object
.
Underscore
Since
1.0.0
Arguments
object
(Object): The object to iterate over.[paths]
(…(string|string[])): The property paths to pick.
Returns
(Array): Returns the picked values.
_.create(prototype, [properties])
function Shape() {
this.x = 0;
this.y = 0;
}
function Circle() {
Shape.call(this);
}
Circle.prototype = _.create(Shape.prototype, {
'constructor': Circle
});
var circle = new Circle;
circle instanceof Circle;
// => true
circle instanceof Shape;
// => true
Creates an object that inherits from the prototype
object. If a
properties
object is given, its own enumerable string keyed properties
are assigned to the created object.
Underscore
Since
2.3.0
Arguments
prototype
(Object): The object to inherit from.[properties]
(Object): The properties to assign to the object.
Returns
(Object): Returns the new object.
_.defaults(object, [sources])
_.defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 });
// => { 'a': 1, 'b': 2 }
Assigns own and inherited enumerable string keyed properties of source
objects to the destination object for all destination properties that
resolve to undefined
. Source objects are applied from left to right.
Once a property is set, additional values of the same property are ignored.
Note: This method mutates object
.
Underscore
Since
0.1.0
Arguments
object
(Object): The destination object.[sources]
(…Object): The source objects.
Returns
(Object): Returns object
.
_.defaultsDeep(object, [sources])
_.defaultsDeep({ 'a': { 'b': 2 } }, { 'a': { 'b': 1, 'c': 3 } });
// => { 'a': { 'b': 2, 'c': 3 } }
This method is like _.defaults
except that it recursively assigns
default properties.
Note: This method mutates object
.
Underscore
Since
3.10.0
Arguments
object
(Object): The destination object.[sources]
(…Object): The source objects.
Returns
(Object): Returns object
.
.findKey(object, [predicate=.identity])
var users = {
'barney': { 'age': 36, 'active': true },
'fred': { 'age': 40, 'active': false },
'pebbles': { 'age': 1, 'active': true }
};
_.findKey(users, function(o) { return o.age < 40; });
// => 'barney' (iteration order is not guaranteed)
// The `_.matches` iteratee shorthand.
_.findKey(users, { 'age': 1, 'active': true });
// => 'pebbles'
// The `_.matchesProperty` iteratee shorthand.
_.findKey(users, ['active', false]);
// => 'fred'
// The `_.property` iteratee shorthand.
_.findKey(users, 'active');
// => 'barney'
This method is like _.find
except that it returns the key of the first
element predicate
returns truthy for instead of the element itself.
Underscore
_.findKey(object, predicate, [context])
Since
1.1.0
Arguments
object
(Object): The object to inspect.[predicate=_.identity]
(Function): The function invoked per iteration.
Returns
(*): Returns the key of the matched element, else undefined
.
.findLastKey(object, [predicate=.identity])
var users = {
'barney': { 'age': 36, 'active': true },
'fred': { 'age': 40, 'active': false },
'pebbles': { 'age': 1, 'active': true }
};
_.findLastKey(users, function(o) { return o.age < 40; });
// => returns 'pebbles' assuming `_.findKey` returns 'barney'
// The `_.matches` iteratee shorthand.
_.findLastKey(users, { 'age': 36, 'active': true });
// => 'barney'
// The `_.matchesProperty` iteratee shorthand.
_.findLastKey(users, ['active', false]);
// => 'fred'
// The `_.property` iteratee shorthand.
_.findLastKey(users, 'active');
// => 'pebbles'
This method is like _.findKey
except that it iterates over elements of
a collection in the opposite order.
Underscore
Since
2.0.0
Arguments
object
(Object): The object to inspect.[predicate=_.identity]
(Function): The function invoked per iteration.
Returns
(*): Returns the key of the matched element, else undefined
.
.forIn(object, [iteratee=.identity])
function Foo() {
this.a = 1;
this.b = 2;
}
Foo.prototype.c = 3;
_.forIn(new Foo, function(value, key) {
console.log(key);
});
// => Logs 'a', 'b', then 'c' (iteration order is not guaranteed).
Iterates over own and inherited enumerable string keyed properties of an
object and invokes iteratee
for each property. The iteratee is invoked
with three arguments: (value, key, object). Iteratee functions may exit
iteration early by explicitly returning false
.
Underscore
Since
0.3.0
Arguments
object
(Object): The object to iterate over.[iteratee=_.identity]
(Function): The function invoked per iteration.
Returns
(Object): Returns object
.
.forInRight(object, [iteratee=.identity])
function Foo() {
this.a = 1;
this.b = 2;
}
Foo.prototype.c = 3;
_.forInRight(new Foo, function(value, key) {
console.log(key);
});
// => Logs 'c', 'b', then 'a' assuming `_.forIn` logs 'a', 'b', then 'c'.
This method is like _.forIn
except that it iterates over properties of
object
in the opposite order.
Underscore
Since
2.0.0
Arguments
object
(Object): The object to iterate over.[iteratee=_.identity]
(Function): The function invoked per iteration.
Returns
(Object): Returns object
.
.forOwn(object, [iteratee=.identity])
function Foo() {
this.a = 1;
this.b = 2;
}
Foo.prototype.c = 3;
_.forOwn(new Foo, function(value, key) {
console.log(key);
});
// => Logs 'a' then 'b' (iteration order is not guaranteed).
Iterates over own enumerable string keyed properties of an object and
invokes iteratee
for each property. The iteratee is invoked with three
arguments: (value, key, object). Iteratee functions may exit iteration
early by explicitly returning false
.
Underscore
Since
0.3.0
Arguments
object
(Object): The object to iterate over.[iteratee=_.identity]
(Function): The function invoked per iteration.
Returns
(Object): Returns object
.
.forOwnRight(object, [iteratee=.identity])
function Foo() {
this.a = 1;
this.b = 2;
}
Foo.prototype.c = 3;
_.forOwnRight(new Foo, function(value, key) {
console.log(key);
});
// => Logs 'b' then 'a' assuming `_.forOwn` logs 'a' then 'b'.
This method is like _.forOwn
except that it iterates over properties of
object
in the opposite order.
Underscore
Since
2.0.0
Arguments
object
(Object): The object to iterate over.[iteratee=_.identity]
(Function): The function invoked per iteration.
Returns
(Object): Returns object
.
_.functions(object)
function Foo() {
this.a = _.constant('a');
this.b = _.constant('b');
}
Foo.prototype.c = _.constant('c');
_.functions(new Foo);
// => ['a', 'b']
Creates an array of function property names from own enumerable properties
of object
.
Underscore
_.functions(object)
Since
0.1.0
Arguments
object
(Object): The object to inspect.
Returns
(Array): Returns the function names.
_.functionsIn(object)
function Foo() {
this.a = _.constant('a');
this.b = _.constant('b');
}
Foo.prototype.c = _.constant('c');
_.functionsIn(new Foo);
// => ['a', 'b', 'c']
Creates an array of function property names from own and inherited
enumerable properties of object
.
Underscore
Since
4.0.0
Arguments
object
(Object): The object to inspect.
Returns
(Array): Returns the function names.
_.get(object, path, [defaultValue])
var object = { 'a': [{ 'b': { 'c': 3 } }] };
_.get(object, 'a[0].b.c');
// => 3
_.get(object, ['a', '0', 'b', 'c']);
// => 3
_.get(object, 'a.b.c', 'default');
// => 'default'
Gets the value at path
of object
. If the resolved value is
undefined
, the defaultValue
is returned in its place.
Underscore
Since
3.7.0
Arguments
object
(Object): The object to query.path
(Array|string): The path of the property to get.[defaultValue]
(*): The value returned forundefined
resolved values.
Returns
(*): Returns the resolved value.
_.has(object, path)
var object = { 'a': { 'b': 2 } };
var other = _.create({ 'a': _.create({ 'b': 2 }) });
_.has(object, 'a');
// => true
_.has(object, 'a.b');
// => true
_.has(object, ['a', 'b']);
// => true
_.has(other, 'a');
// => false
Checks if path
is a direct property of object
.
Underscore
_.has(object, key)
Since
0.1.0
Arguments
object
(Object): The object to query.path
(Array|string): The path to check.
Returns
(boolean): Returns true
if path
exists, else false
.
_.hasIn(object, path)
var object = _.create({ 'a': _.create({ 'b': 2 }) });
_.hasIn(object, 'a');
// => true
_.hasIn(object, 'a.b');
// => true
_.hasIn(object, ['a', 'b']);
// => true
_.hasIn(object, 'b');
// => false
Checks if path
is a direct or inherited property of object
.
Underscore
Since
4.0.0
Arguments
object
(Object): The object to query.path
(Array|string): The path to check.
Returns
(boolean): Returns true
if path
exists, else false
.
_.invert(object)
var object = { 'a': 1, 'b': 2, 'c': 1 };
_.invert(object);
// => { '1': 'c', '2': 'b' }
Creates an object composed of the inverted keys and values of object
.
If object
contains duplicate values, subsequent values overwrite
property assignments of previous values.
Underscore
Since
0.7.0
Arguments
object
(Object): The object to invert.
Returns
(Object): Returns the new inverted object.
.invertBy(object, [iteratee=.identity])
var object = { 'a': 1, 'b': 2, 'c': 1 };
_.invertBy(object);
// => { '1': ['a', 'c'], '2': ['b'] }
_.invertBy(object, function(value) {
return 'group' + value;
});
// => { 'group1': ['a', 'c'], 'group2': ['b'] }
This method is like _.invert
except that the inverted object is generated
from the results of running each element of object
thru iteratee
. The
corresponding inverted value of each inverted key is an array of keys
responsible for generating the inverted value. The iteratee is invoked
with one argument: (value).
Underscore
Since
4.1.0
Arguments
object
(Object): The object to invert.[iteratee=_.identity]
(Function): The iteratee invoked per element.
Returns
(Object): Returns the new inverted object.
_.invoke(object, path, [args])
var object = { 'a': [{ 'b': { 'c': [1, 2, 3, 4] } }] };
_.invoke(object, 'a[0].b.c.slice', 1, 3);
// => [2, 3]
Invokes the method at path
of object
.
Underscore
_.invoke(list, methodName, *arguments)
Since
4.0.0
Arguments
object
(Object): The object to query.path
(Array|string): The path of the method to invoke.[args]
(…*): The arguments to invoke the method with.
Returns
(*): Returns the result of the invoked method.
_.keys(object)
function Foo() {
this.a = 1;
this.b = 2;
}
Foo.prototype.c = 3;
_.keys(new Foo);
// => ['a', 'b'] (iteration order is not guaranteed)
_.keys('hi');
// => ['0', '1']
_.keys({one: 1, two: 2, three: 3});
=> ["one", "two", "three"]
Creates an array of the own enumerable property names of object
.
Note: Non-object values are coerced to objects. See the
ES spec
for more details.
Underscore
_.keys(object)
Since
0.1.0
Arguments
object
(Object): The object to query.
Returns
(Array): Returns the array of property names.
_.keysIn(object)
function Foo() {
this.a = 1;
this.b = 2;
}
Foo.prototype.c = 3;
_.keysIn(new Foo);
// => ['a', 'b', 'c'] (iteration order is not guaranteed)
Creates an array of the own and inherited enumerable property names of object
.
Note: Non-object values are coerced to objects.
Underscore
Since
3.0.0
Arguments
object
(Object): The object to query.
Returns
(Array): Returns the array of property names.
.mapKeys(object, [iteratee=.identity])
_.mapKeys({ 'a': 1, 'b': 2 }, function(value, key) {
return key + value;
});
// => { 'a1': 1, 'b2': 2 }
The opposite of _.mapValues
; this method creates an object with the
same values as object
and keys generated by running each own enumerable
string keyed property of object
thru iteratee
. The iteratee is invoked
with three arguments: (value, key, object).
Underscore
Since
3.8.0
Arguments
object
(Object): The object to iterate over.[iteratee=_.identity]
(Function): The function invoked per iteration.
Returns
(Object): Returns the new mapped object.
.mapValues(object, [iteratee=.identity])
var users = {
'fred': { 'user': 'fred', 'age': 40 },
'pebbles': { 'user': 'pebbles', 'age': 1 }
};
_.mapValues(users, function(o) { return o.age; });
// => { 'fred': 40, 'pebbles': 1 } (iteration order is not guaranteed)
// The `_.property` iteratee shorthand.
_.mapValues(users, 'age');
// => { 'fred': 40, 'pebbles': 1 } (iteration order is not guaranteed)
_.mapObject({ one: 1, two: 2, three: 3 }, function (v) { return v * 3; });
// => { one: 3, two: 6, three: 9 }
Creates an object with the same keys as object
and values generated
by running each own enumerable string keyed property of object
thru
iteratee
. The iteratee is invoked with three arguments:
(value, key, object).
Underscore
_.mapObject(object, iteratee, [context])
Since
2.4.0
Arguments
object
(Object): The object to iterate over.[iteratee=_.identity]
(Function): The function invoked per iteration.
Returns
(Object): Returns the new mapped object.
_.merge(object, [sources])
var object = {
'a': [{ 'b': 2 }, { 'd': 4 }]
};
var other = {
'a': [{ 'c': 3 }, { 'e': 5 }]
};
_.merge(object, other);
// => { 'a': [{ 'b': 2, 'c': 3 }, { 'd': 4, 'e': 5 }] }
This method is like _.assign
except that it recursively merges own and
inherited enumerable string keyed properties of source objects into the
destination object. Source properties that resolve to undefined
are
skipped if a destination value exists. Array and plain object properties
are merged recursively. Other objects and value types are overridden by
assignment. Source objects are applied from left to right. Subsequent
sources overwrite property assignments of previous sources.
Note: This method mutates object
.
Underscore
Since
0.5.0
Arguments
object
(Object): The destination object.[sources]
(…Object): The source objects.
Returns
(Object): Returns object
.
_.mergeWith(object, sources, customizer)
function customizer(objValue, srcValue) {
if (_.isArray(objValue)) {
return objValue.concat(srcValue);
}
}
var object = { 'a': [1], 'b': [2] };
var other = { 'a': [3], 'b': [4] };
_.mergeWith(object, other, customizer);
// => { 'a': [1, 3], 'b': [2, 4] }
This method is like _.merge
except that it accepts customizer
which
is invoked to produce the merged values of the destination and source
properties. If customizer
returns undefined
, merging is handled by the
method instead. The customizer
is invoked with six arguments:
(objValue, srcValue, key, object, source, stack).
Note: This method mutates object
.
Underscore
Since
4.0.0
Arguments
object
(Object): The destination object.sources
(…Object): The source objects.customizer
(Function): The function to customize assigned values.
Returns
(Object): Returns object
.
_.omit(object, [paths])
var object = { 'a': 1, 'b': '2', 'c': 3 };
_.omit(object, ['a', 'c']);
// => { 'b': '2' }
The opposite of _.pick
; this method creates an object composed of the
own and inherited enumerable property paths of object
that are not omitted.
Note: This method is considerably slower than _.pick
.
Underscore
Since
0.1.0
Arguments
object
(Object): The source object.[paths]
(…(string|string[])): The property paths to omit.
Returns
(Object): Returns the new object.
.omitBy(object, [predicate=.identity])
var object = { 'a': 1, 'b': '2', 'c': 3 };
_.omitBy(object, _.isNumber);
// => { 'b': '2' }
The opposite of _.pickBy
; this method creates an object composed of
the own and inherited enumerable string keyed properties of object
that
predicate
doesn’t return truthy for. The predicate is invoked with two
arguments: (value, key).
Underscore
Since
4.0.0
Arguments
object
(Object): The source object.[predicate=_.identity]
(Function): The function invoked per property.
Returns
(Object): Returns the new object.
_.pick(object, [paths])
var object = { 'a': 1, 'b': '2', 'c': 3 };
_.pick(object, ['a', 'c']);
// => { 'a': 1, 'c': 3 }
Creates an object composed of the picked object
properties.
Underscore
_.pick(object, *keys)
Since
0.1.0
Arguments
object
(Object): The source object.[paths]
(…(string|string[])): The property paths to pick.
Returns
(Object): Returns the new object.
.pickBy(object, [predicate=.identity])
var object = { 'a': 1, 'b': '2', 'c': 3 };
_.pickBy(object, _.isNumber);
// => { 'a': 1, 'c': 3 }
Creates an object composed of the object
properties predicate
returns
truthy for. The predicate is invoked with two arguments: (value, key).
Underscore
Since
4.0.0
Arguments
object
(Object): The source object.[predicate=_.identity]
(Function): The function invoked per property.
Returns
(Object): Returns the new object.
_.result(object, path, [defaultValue])
var object = { 'a': [{ 'b': { 'c1': 3, 'c2': _.constant(4) } }] };
_.result(object, 'a[0].b.c1');
// => 3
_.result(object, 'a[0].b.c2');
// => 4
_.result(object, 'a[0].b.c3', 'default');
// => 'default'
_.result(object, 'a[0].b.c3', _.constant('default'));
// => 'default'
This method is like _.get
except that if the resolved value is a
function it’s invoked with the this
binding of its parent object and
its result is returned.
Underscore
_.result(object, property, [defaultValue])
Since
0.1.0
Arguments
object
(Object): The object to query.path
(Array|string): The path of the property to resolve.[defaultValue]
(*): The value returned forundefined
resolved values.
Returns
(*): Returns the resolved value.
_.set(object, path, value)
var object = { 'a': [{ 'b': { 'c': 3 } }] };
_.set(object, 'a[0].b.c', 4);
console.log(object.a[0].b.c);
// => 4
_.set(object, ['x', '0', 'y', 'z'], 5);
console.log(object.x[0].y.z);
// => 5
Sets the value at path
of object
. If a portion of path
doesn’t exist,
it’s created. Arrays are created for missing index properties while objects
are created for all other missing properties. Use _.setWith
to customize
path
creation.
Note: This method mutates object
.
Underscore
Since
3.7.0
Arguments
object
(Object): The object to modify.path
(Array|string): The path of the property to set.value
(*): The value to set.
Returns
(Object): Returns object
.
_.setWith(object, path, value, [customizer])
var object = {};
_.setWith(object, '[0][1]', 'a', Object);
// => { '0': { '1': 'a' } }
This method is like _.set
except that it accepts customizer
which is
invoked to produce the objects of path
. If customizer
returns undefined
path creation is handled by the method instead. The customizer
is invoked
with three arguments: (nsValue, key, nsObject).
Note: This method mutates object
.
Underscore
Since
4.0.0
Arguments
object
(Object): The object to modify.path
(Array|string): The path of the property to set.value
(*): The value to set.[customizer]
(Function): The function to customize assigned values.
Returns
(Object): Returns object
.
_.toPairs(object)
function Foo() {
this.a = 1;
this.b = 2;
}
Foo.prototype.c = 3;
_.toPairs(new Foo);
// => [['a', 1], ['b', 2]] (iteration order is not guaranteed)
//Underscore
_.pairs({one: 1, two: 2, three: 3});
=> [["one", 1], ["two", 2], ["three", 3]]
Creates an array of own enumerable string keyed-value pairs for object
which can be consumed by _.fromPairs
. If object
is a map or set, its
entries are returned.
Underscore
_.pairs(object)
Since
4.0.0
Aliases
_.entries
Arguments
object
(Object): The object to query.
Returns
(Array): Returns the key-value pairs.
_.toPairsIn(object)
function Foo() {
this.a = 1;
this.b = 2;
}
Foo.prototype.c = 3;
_.toPairsIn(new Foo);
// => [['a', 1], ['b', 2], ['c', 3]] (iteration order is not guaranteed)
Creates an array of own and inherited enumerable string keyed-value pairs
for object
which can be consumed by _.fromPairs
. If object
is a map
or set, its entries are returned.
Underscore
Since
4.0.0
Aliases
_.entriesIn
Arguments
object
(Object): The object to query.
Returns
(Array): Returns the key-value pairs.
.transform(object, [iteratee=.identity], [accumulator])
_.transform([2, 3, 4], function(result, n) {
result.push(n *= n);
return n % 2 == 0;
}, []);
// => [4, 9]
_.transform({ 'a': 1, 'b': 2, 'c': 1 }, function(result, value, key) {
(result[value] || (result[value] = [])).push(key);
}, {});
// => { '1': ['a', 'c'], '2': ['b'] }
An alternative to _.reduce
; this method transforms object
to a new
accumulator
object which is the result of running each of its own
enumerable string keyed properties thru iteratee
, with each invocation
potentially mutating the accumulator
object. If accumulator
is not
provided, a new object with the same [[Prototype]]
will be used. The
iteratee is invoked with four arguments: (accumulator, value, key, object).
Iteratee functions may exit iteration early by explicitly returning false
.
Underscore
Since
1.3.0
Arguments
object
(Object): The object to iterate over.[iteratee=_.identity]
(Function): The function invoked per iteration.[accumulator]
(*): The custom accumulator value.
Returns
(*): Returns the accumulated value.
_.unset(object, path)
var object = { 'a': [{ 'b': { 'c': 7 } }] };
_.unset(object, 'a[0].b.c');
// => true
console.log(object);
// => { 'a': [{ 'b': {} }] };
_.unset(object, ['a', '0', 'b', 'c']);
// => true
console.log(object);
// => { 'a': [{ 'b': {} }] };
Removes the property at path
of object
.
Note: This method mutates object
.
Underscore
Since
4.0.0
Arguments
object
(Object): The object to modify.path
(Array|string): The path of the property to unset.
Returns
(boolean): Returns true
if the property is deleted, else false
.
_.update(object, path, updater)
var object = { 'a': [{ 'b': { 'c': 3 } }] };
_.update(object, 'a[0].b.c', function(n) { return n * n; });
console.log(object.a[0].b.c);
// => 9
_.update(object, 'x[0].y.z', function(n) { return n ? n + 1 : 0; });
console.log(object.x[0].y.z);
// => 0
This method is like _.set
except that accepts updater
to produce the
value to set. Use _.updateWith
to customize path
creation. The updater
is invoked with one argument: (value).
Note: This method mutates object
.
Underscore
Since
4.6.0
Arguments
object
(Object): The object to modify.path
(Array|string): The path of the property to set.updater
(Function): The function to produce the updated value.
Returns
(Object): Returns object
.
_.updateWith(object, path, updater, [customizer])
var object = {};
_.updateWith(object, '[0][1]', _.constant('a'), Object);
// => { '0': { '1': 'a' } }
This method is like _.update
except that it accepts customizer
which is
invoked to produce the objects of path
. If customizer
returns undefined
path creation is handled by the method instead. The customizer
is invoked
with three arguments: (nsValue, key, nsObject).
Note: This method mutates object
.
Underscore
Since
4.6.0
Arguments
object
(Object): The object to modify.path
(Array|string): The path of the property to set.updater
(Function): The function to produce the updated value.[customizer]
(Function): The function to customize assigned values.
Returns
(Object): Returns object
.
_.values(object)
function Foo() {
this.a = 1;
this.b = 2;
}
Foo.prototype.c = 3;
_.values(new Foo);
// => [1, 2] (iteration order is not guaranteed)
_.values('hi');
// => ['h', 'i']
Creates an array of the own enumerable string keyed property values of object
.
Note: Non-object values are coerced to objects.
Underscore
_.values(object)
Since
0.1.0
Arguments
object
(Object): The object to query.
Returns
(Array): Returns the array of property values.
_.valuesIn(object)
function Foo() {
this.a = 1;
this.b = 2;
}
Foo.prototype.c = 3;
_.valuesIn(new Foo);
// => [1, 2, 3] (iteration order is not guaranteed)
Creates an array of the own and inherited enumerable string keyed property
values of object
.
Note: Non-object values are coerced to objects.
Underscore
Since
3.0.0
Arguments
object
(Object): The object to query.
Returns
(Array): Returns the array of property values.
Seq
_(value)
function square(n) {
return n * n;
}
var wrapped = _([1, 2, 3]);
// Returns an unwrapped value.
wrapped.reduce(_.add);
// => 6
// Returns a wrapped value.
var squares = wrapped.map(square);
_.isArray(squares);
// => false
_.isArray(squares.value());
// => true
Creates a lodash
object which wraps value
to enable implicit method
chain sequences. Methods that operate on and return arrays, collections,
and functions can be chained together. Methods that retrieve a single value
or may return a primitive value will automatically end the chain sequence
and return the unwrapped value. Otherwise, the value must be unwrapped
with _#value
.
Explicit chain sequences, which must be unwrapped with _#value
, may be
enabled using _.chain
.
The execution of chained methods is lazy, that is, it’s deferred until
_#value
is implicitly or explicitly called.
Lazy evaluation allows several methods to support shortcut fusion.
Shortcut fusion is an optimization to merge iteratee calls; this avoids
the creation of intermediate arrays and can greatly reduce the number of
iteratee executions. Sections of a chain sequence qualify for shortcut
fusion if the section is applied to an array and iteratees accept only
one argument. The heuristic for whether a section qualifies for shortcut
fusion is subject to change.
Chaining is supported in custom builds as long as the _#value
method is
directly or indirectly included in the build.
In addition to lodash methods, wrappers have Array
and String
methods.
The wrapper Array
methods are:
concat
, join
, pop
, push
, shift
, sort
, splice
, and unshift
The wrapper String
methods are:
replace
and split
The wrapper methods that support shortcut fusion are:
at
, compact
, drop
, dropRight
, dropWhile
, filter
, find
,
findLast
, head
, initial
, last
, map
, reject
, reverse
, slice
,
tail
, take
, takeRight
, takeRightWhile
, takeWhile
, and toArray
The chainable wrapper methods are:
after
, ary
, assign
, assignIn
, assignInWith
, assignWith
, at
,
before
, bind
, bindAll
, bindKey
, castArray
, chain
, chunk
,
commit
, compact
, concat
, conforms
, constant
, countBy
, create
,
curry
, debounce
, defaults
, defaultsDeep
, defer
, delay
,
difference
, differenceBy
, differenceWith
, drop
, dropRight
,
dropRightWhile
, dropWhile
, extend
, extendWith
, fill
, filter
,
flatMap
, flatMapDeep
, flatMapDepth
, flatten
, flattenDeep
,
flattenDepth
, flip
, flow
, flowRight
, fromPairs
, functions
,
functionsIn
, groupBy
, initial
, intersection
, intersectionBy
,
intersectionWith
, invert
, invertBy
, invokeMap
, iteratee
, keyBy
,
keys
, keysIn
, map
, mapKeys
, mapValues
, matches
, matchesProperty
,
memoize
, merge
, mergeWith
, method
, methodOf
, mixin
, negate
,
nthArg
, omit
, omitBy
, once
, orderBy
, over
, overArgs
,
overEvery
, overSome
, partial
, partialRight
, partition
, pick
,
pickBy
, plant
, property
, propertyOf
, pull
, pullAll
, pullAllBy
,
pullAllWith
, pullAt
, push
, range
, rangeRight
, rearg
, reject
,
remove
, rest
, reverse
, sampleSize
, set
, setWith
, shuffle
,
slice
, sort
, sortBy
, splice
, spread
, tail
, take
, takeRight
,
takeRightWhile
, takeWhile
, tap
, throttle
, thru
, toArray
,
toPairs
, toPairsIn
, toPath
, toPlainObject
, transform
, unary
,
union
, unionBy
, unionWith
, uniq
, uniqBy
, uniqWith
, unset
,
unshift
, unzip
, unzipWith
, update
, updateWith
, values
,
valuesIn
, without
, wrap
, xor
, xorBy
, xorWith
, zip
,
zipObject
, zipObjectDeep
, and zipWith
The wrapper methods that are not chainable by default are:
add
, attempt
, camelCase
, capitalize
, ceil
, clamp
, clone
,
cloneDeep
, cloneDeepWith
, cloneWith
, conformsTo
, deburr
,
defaultTo
, divide
, each
, eachRight
, endsWith
, eq
, escape
,
escapeRegExp
, every
, find
, findIndex
, findKey
, findLast
,
findLastIndex
, findLastKey
, first
, floor
, forEach
, forEachRight
,
forIn
, forInRight
, forOwn
, forOwnRight
, get
, gt
, gte
, has
,
hasIn
, head
, identity
, includes
, indexOf
, inRange
, invoke
,
isArguments
, isArray
, isArrayBuffer
, isArrayLike
, isArrayLikeObject
,
isBoolean
, isBuffer
, isDate
, isElement
, isEmpty
, isEqual
,
isEqualWith
, isError
, isFinite
, isFunction
, isInteger
, isLength
,
isMap
, isMatch
, isMatchWith
, isNaN
, isNative
, isNil
, isNull
,
isNumber
, isObject
, isObjectLike
, isPlainObject
, isRegExp
,
isSafeInteger
, isSet
, isString
, isUndefined
, isTypedArray
,
isWeakMap
, isWeakSet
, join
, kebabCase
, last
, lastIndexOf
,
lowerCase
, lowerFirst
, lt
, lte
, max
, maxBy
, mean
, meanBy
,
min
, minBy
, multiply
, noConflict
, noop
, now
, nth
, pad
,
padEnd
, padStart
, parseInt
, pop
, random
, reduce
, reduceRight
,
repeat
, result
, round
, runInContext
, sample
, shift
, size
,
snakeCase
, some
, sortedIndex
, sortedIndexBy
, sortedLastIndex
,
sortedLastIndexBy
, startCase
, startsWith
, stubArray
, stubFalse
,
stubObject
, stubString
, stubTrue
, subtract
, sum
, sumBy
,
template
, times
, toFinite
, toInteger
, toJSON
, toLength
,
toLower
, toNumber
, toSafeInteger
, toString
, toUpper
, trim
,
trimEnd
, trimStart
, truncate
, unescape
, uniqueId
, upperCase
,
upperFirst
, value
, and words
Arguments
value
(*): The value to wrap in alodash
instance.
Returns
(Object): Returns the new lodash
wrapper instance.
_.chain(value)
var users = [
{ 'user': 'barney', 'age': 36 },
{ 'user': 'fred', 'age': 40 },
{ 'user': 'pebbles', 'age': 1 }
];
var youngest = _
.chain(users)
.sortBy('age')
.map(function(o) {
return o.user + ' is ' + o.age;
})
.head()
.value();
// => 'pebbles is 1'
Creates a lodash
wrapper instance that wraps value
with explicit method
chain sequences enabled. The result of such sequences must be unwrapped
with _#value
.
Underscore
Since
1.3.0
Arguments
value
(*): The value to wrap.
Returns
(Object): Returns the new lodash
wrapper instance.
_.tap(value, interceptor)
_([1, 2, 3])
.tap(function(array) {
// Mutate input array.
array.pop();
})
.reverse()
.value();
// => [2, 1]
This method invokes interceptor
and returns value
. The interceptor
is invoked with one argument; (value). The purpose of this method is to
“tap into” a method chain sequence in order to modify intermediate results.
Underscore
_.tap(object, interceptor)
Since
0.1.0
Arguments
value
(*): The value to provide tointerceptor
.interceptor
(Function): The function to invoke.
Returns
(*): Returns value
.
_.thru(value, interceptor)
_(' abc ')
.chain()
.trim()
.thru(function(value) {
return [value];
})
.value();
// => ['abc']
This method is like _.tap
except that it returns the result of interceptor
.
The purpose of this method is to “pass thru” values replacing intermediate
results in a method chain sequence.
Underscore
Since
3.0.0
Arguments
value
(*): The value to provide tointerceptor
.interceptor
(Function): The function to invoke.
Returns
(*): Returns the result of interceptor
.
_.prototypeSymbol.iterator
var wrapped = _([1, 2]);
wrapped[Symbol.iterator]() === wrapped;
// => true
Array.from(wrapped);
// => [1, 2]
Enables the wrapper to be iterable.
Underscore
Since
4.0.0
Returns
(Object): Returns the wrapper object.
_.prototype.at([paths])
var object = { 'a': [{ 'b': { 'c': 3 } }, 4] };
_(object).at(['a[0].b.c', 'a[1]']).value();
// => [3, 4]
This method is the wrapper version of _.at
.
Underscore
Since
1.0.0
Arguments
[paths]
(…(string|string[])): The property paths to pick.
Returns
(Object): Returns the new lodash
wrapper instance.
_.prototype.chain()
var users = [
{ 'user': 'barney', 'age': 36 },
{ 'user': 'fred', 'age': 40 }
];
// A sequence without explicit chaining.
_(users).head();
// => { 'user': 'barney', 'age': 36 }
// A sequence with explicit chaining.
_(users)
.chain()
.head()
.pick('user')
.value();
// => { 'user': 'barney' }
Creates a lodash
wrapper instance with explicit method chain sequences enabled.
Underscore
Since
0.1.0
Returns
(Object): Returns the new lodash
wrapper instance.
_.prototype.commit()
var array = [1, 2];
var wrapped = _(array).push(3);
console.log(array);
// => [1, 2]
wrapped = wrapped.commit();
console.log(array);
// => [1, 2, 3]
wrapped.last();
// => 3
console.log(array);
// => [1, 2, 3]
Executes the chain sequence and returns the wrapped result.
Underscore
Since
3.2.0
Returns
(Object): Returns the new lodash
wrapper instance.
_.prototype.next()
var wrapped = _([1, 2]);
wrapped.next();
// => { 'done': false, 'value': 1 }
wrapped.next();
// => { 'done': false, 'value': 2 }
wrapped.next();
// => { 'done': true, 'value': undefined }
Gets the next value on a wrapped object following the iterator protocol.
Underscore
Since
4.0.0
Returns
(Object): Returns the next iterator value.
_.prototype.plant(value)
function square(n) {
return n * n;
}
var wrapped = _([1, 2]).map(square);
var other = wrapped.plant([3, 4]);
other.value();
// => [9, 16]
wrapped.value();
// => [1, 4]
Creates a clone of the chain sequence planting value
as the wrapped value.
Underscore
Since
3.2.0
Arguments
value
(*): The value to plant.
Returns
(Object): Returns the new lodash
wrapper instance.
_.prototype.reverse()
var array = [1, 2, 3];
_(array).reverse().value()
// => [3, 2, 1]
console.log(array);
// => [3, 2, 1]
This method is the wrapper version of _.reverse
.
Note: This method mutates the wrapped array.
Underscore
Since
0.1.0
Returns
(Object): Returns the new lodash
wrapper instance.
_.prototype.value()
_([1, 2, 3]).value();
// => [1, 2, 3]
Executes the chain sequence to resolve the unwrapped value.
Underscore
Since
0.1.0
Aliases
_.prototype.toJSON, _.prototype.valueOf
Returns
(*): Returns the resolved unwrapped value.
String
_.camelCase([string=''])
_.camelCase('Foo Bar');
// => 'fooBar'
_.camelCase('--foo-bar--');
// => 'fooBar'
_.camelCase('__FOO_BAR__');
// => 'fooBar'
Converts string
to camel case.
Underscore
Since
3.0.0
Arguments
[string='']
(string): The string to convert.
Returns
(string): Returns the camel cased string.
_.capitalize([string=''])
_.capitalize('FRED');
// => 'Fred'
Converts the first character of string
to upper case and the remaining
to lower case.
Underscore
Since
3.0.0
Arguments
[string='']
(string): The string to capitalize.
Returns
(string): Returns the capitalized string.
_.deburr([string=''])
_.deburr('déjà vu');
// => 'deja vu'
Deburrs string
by converting
Latin-1 Supplement
and Latin Extended-A
letters to basic Latin letters and removing
combining diacritical marks.
Underscore
Since
3.0.0
Arguments
[string='']
(string): The string to deburr.
Returns
(string): Returns the deburred string.
_.endsWith([string=''], [target], [position=string.length])
_.endsWith('abc', 'c');
// => true
_.endsWith('abc', 'b');
// => false
_.endsWith('abc', 'b', 2);
// => true
Checks if string
ends with the given target string.
Underscore
Since
3.0.0
Arguments
[string='']
(string): The string to inspect.[target]
(string): The string to search for.[position=string.length]
(number): The position to search up to.
Returns
(boolean): Returns true
if string
ends with target
, else false
.
_.escape([string=''])
_.escape('fred, barney, & pebbles');
// => 'fred, barney, & pebbles'
Converts the characters “&”, “<”, “>”, ’“’, and ”’“ in string
to their
corresponding HTML entities.
Note: No other characters are escaped. To escape additional
characters use a third-party library like he.
Though the ”>“ character is escaped for symmetry, characters like
”>“ and ”/“ don’t need escaping in HTML and have no special meaning
unless they’re part of a tag or unquoted attribute value. See
Mathias Bynens’s article
(under "semi-related fun fact”) for more details.
When working with HTML you should always
quote attribute values to reduce
XSS vectors.
Underscore
Since
0.1.0
Arguments
[string='']
(string): The string to escape.
Returns
(string): Returns the escaped string.
_.escapeRegExp([string=''])
_.escapeRegExp('[lodash](https://lodash.com/)');
// => '\[lodash\]\(https://lodash\.com/\)'
Escapes the RegExp
special characters “^”, “$”, “\”, “.”, “*”, “+”,
“?”, “(”, “)”, “[”, “]”, “{”, “}”, and “|” in string
.
Underscore
Since
3.0.0
Arguments
[string='']
(string): The string to escape.
Returns
(string): Returns the escaped string.
_.kebabCase([string=''])
_.kebabCase('Foo Bar');
// => 'foo-bar'
_.kebabCase('fooBar');
// => 'foo-bar'
_.kebabCase('__FOO_BAR__');
// => 'foo-bar'
Converts string
to
kebab case.
Underscore
Since
3.0.0
Arguments
[string='']
(string): The string to convert.
Returns
(string): Returns the kebab cased string.
_.lowerCase([string=''])
_.lowerCase('--Foo-Bar--');
// => 'foo bar'
_.lowerCase('fooBar');
// => 'foo bar'
_.lowerCase('__FOO_BAR__');
// => 'foo bar'
Converts string
, as space separated words, to lower case.
Underscore
Since
4.0.0
Arguments
[string='']
(string): The string to convert.
Returns
(string): Returns the lower cased string.
_.lowerFirst([string=''])
_.lowerFirst('Fred');
// => 'fred'
_.lowerFirst('FRED');
// => 'fRED'
Converts the first character of string
to lower case.
Underscore
Since
4.0.0
Arguments
[string='']
(string): The string to convert.
Returns
(string): Returns the converted string.
_.pad([string=''], [length=0], [chars=' '])
_.pad('abc', 8);
// => ' abc '
_.pad('abc', 8, '_-');
// => '_-abc_-_'
_.pad('abc', 3);
// => 'abc'
Pads string
on the left and right sides if it’s shorter than length
.
Padding characters are truncated if they can’t be evenly divided by length
.
Underscore
Since
3.0.0
Arguments
[string='']
(string): The string to pad.[length=0]
(number): The padding length.[chars=' ']
(string): The string used as padding.
Returns
(string): Returns the padded string.
_.padEnd([string=''], [length=0], [chars=' '])
_.padEnd('abc', 6);
// => 'abc '
_.padEnd('abc', 6, '_-');
// => 'abc_-_'
_.padEnd('abc', 3);
// => 'abc'
Pads string
on the right side if it’s shorter than length
. Padding
characters are truncated if they exceed length
.
Underscore
Since
4.0.0
Arguments
[string='']
(string): The string to pad.[length=0]
(number): The padding length.[chars=' ']
(string): The string used as padding.
Returns
(string): Returns the padded string.
_.padStart([string=''], [length=0], [chars=' '])
_.padStart('abc', 6);
// => ' abc'
_.padStart('abc', 6, '_-');
// => '_-_abc'
_.padStart('abc', 3);
// => 'abc'
Pads string
on the left side if it’s shorter than length
. Padding
characters are truncated if they exceed length
.
Underscore
Since
4.0.0
Arguments
[string='']
(string): The string to pad.[length=0]
(number): The padding length.[chars=' ']
(string): The string used as padding.
Returns
(string): Returns the padded string.
_.parseInt(string, [radix=10])
_.parseInt('08');
// => 8
_.map(['6', '08', '10'], _.parseInt);
// => [6, 8, 10]
Converts string
to an integer of the specified radix. If radix
is
undefined
or 0
, a radix
of 10
is used unless value
is a
hexadecimal, in which case a radix
of 16
is used.
Note: This method aligns with the
ES5 implementation of parseInt
.
Underscore
Since
1.1.0
Arguments
string
(string): The string to convert.[radix=10]
(number): The radix to interpretvalue
by.
Returns
(number): Returns the converted integer.
_.repeat([string=''], [n=1])
_.repeat('*', 3);
// => '***'
_.repeat('abc', 2);
// => 'abcabc'
_.repeat('abc', 0);
// => ''
Repeats the given string n
times.
Underscore
Since
3.0.0
Arguments
[string='']
(string): The string to repeat.[n=1]
(number): The number of times to repeat the string.
Returns
(string): Returns the repeated string.
_.replace([string=''], pattern, replacement)
_.replace('Hi Fred', 'Fred', 'Barney');
// => 'Hi Barney'
Replaces matches for pattern
in string
with replacement
.
Note: This method is based on
String#replace
.
Underscore
Since
4.0.0
Arguments
[string='']
(string): The string to modify.pattern
(RegExp|string): The pattern to replace.replacement
(Function|string): The match replacement.
Returns
(string): Returns the modified string.
_.snakeCase([string=''])
_.snakeCase('Foo Bar');
// => 'foo_bar'
_.snakeCase('fooBar');
// => 'foo_bar'
_.snakeCase('--FOO-BAR--');
// => 'foo_bar'
Converts string
to
snake case.
Underscore
Since
3.0.0
Arguments
[string='']
(string): The string to convert.
Returns
(string): Returns the snake cased string.
_.split([string=''], separator, [limit])
_.split('a-b-c', '-', 2);
// => ['a', 'b']
Splits string
by separator
.
Note: This method is based on
String#split
.
Underscore
Since
4.0.0
Arguments
[string='']
(string): The string to split.separator
(RegExp|string): The separator pattern to split by.[limit]
(number): The length to truncate results to.
Returns
(Array): Returns the string segments.
_.startCase([string=''])
_.startCase('--foo-bar--');
// => 'Foo Bar'
_.startCase('fooBar');
// => 'Foo Bar'
_.startCase('__FOO_BAR__');
// => 'FOO BAR'
Converts string
to
start case.
Underscore
Since
3.1.0
Arguments
[string='']
(string): The string to convert.
Returns
(string): Returns the start cased string.
_.startsWith([string=''], [target], [position=0])
_.startsWith('abc', 'a');
// => true
_.startsWith('abc', 'b');
// => false
_.startsWith('abc', 'b', 1);
// => true
Checks if string
starts with the given target string.
Underscore
Since
3.0.0
Arguments
[string='']
(string): The string to inspect.[target]
(string): The string to search for.[position=0]
(number): The position to search from.
Returns
(boolean): Returns true
if string
starts with target
, else false
.
_.template([string=''], [options={}])
/*UnderScore*/
var compiled = _.template("hello: <%= name %>");
compiled({name: 'moe'});
//=> "hello: moe"
var template = _.template("<b><%- value %></b>");
template({value: '<script>'});
//=> "<b><script></b>"
/*Lodash*/
// Use the "interpolate" delimiter to create a compiled template.
var compiled = _.template('hello <%= user %>!');
compiled({ 'user': 'fred' });
// => 'hello fred!'
// Use the HTML "escape" delimiter to escape data property values.
var compiled = _.template('<b><%- value %></b>');
compiled({ 'value': '<script>' });
// => '<b><script></b>'
// Use the "evaluate" delimiter to execute JavaScript and generate HTML.
var compiled = _.template('<% _.forEach(users, function(user) { %><li><%- user %></li><% }); %>');
compiled({ 'users': ['fred', 'barney'] });
// => '<li>fred</li><li>barney</li>'
// Use the internal `print` function in "evaluate" delimiters.
var compiled = _.template('<% print("hello " + user); %>!');
compiled({ 'user': 'barney' });
// => 'hello barney!'
// Use the ES template literal delimiter as an "interpolate" delimiter.
// Disable support by replacing the "interpolate" delimiter.
var compiled = _.template('hello ${ user }!');
compiled({ 'user': 'pebbles' });
// => 'hello pebbles!'
// Use backslashes to treat delimiters as plain text.
var compiled = _.template('<%= "\\<%- value %\\>" %>');
compiled({ 'value': 'ignored' });
// => '<%- value %>'
// Use the `imports` option to import `jQuery` as `jq`.
var text = '<% jq.each(users, function(user) { %><li><%- user %></li><% }); %>';
var compiled = _.template(text, { 'imports': { 'jq': jQuery } });
compiled({ 'users': ['fred', 'barney'] });
// => '<li>fred</li><li>barney</li>'
// Use the `sourceURL` option to specify a custom sourceURL for the template.
var compiled = _.template('hello <%= user %>!', { 'sourceURL': '/basic/greeting.jst' });
compiled(data);
// => Find the source of "greeting.jst" under the Sources tab or Resources panel of the web inspector.
// Use the `variable` option to ensure a with-statement isn't used in the compiled template.
var compiled = _.template('hi <%= data.user %>!', { 'variable': 'data' });
compiled.source;
// => function(data) {
// var __t, __p = '';
// __p += 'hi ' + ((__t = ( data.user )) == null ? '' : __t) + '!';
// return __p;
// }
// Use custom template delimiters.
_.templateSettings.interpolate = /{{([\s\S]+?)}}/g;
var compiled = _.template('hello {{ user }}!');
compiled({ 'user': 'mustache' });
// => 'hello mustache!'
// Use the `source` property to inline compiled templates for meaningful
// line numbers in error messages and stack traces.
fs.writeFileSync(path.join(process.cwd(), 'jst.js'), '\
var JST = {\
"main": ' + _.template(mainText).source + '\
};\
');
Creates a compiled template function that can interpolate data properties
in “interpolate” delimiters, HTML-escape interpolated data properties in
“escape” delimiters, and execute JavaScript in “evaluate” delimiters. Data
properties may be accessed as free variables in the template. If a setting
object is given, it takes precedence over _.templateSettings
values.
Note: In the development build _.template
utilizes
sourceURLs
for easier debugging.
For more information on precompiling templates see
lodash’s custom builds documentation.
For more information on Chrome extension sandboxes see
Chrome’s extensions documentation.
Underscore
_.template(templateString, [settings])
Since
0.1.0
Arguments
[string='']
(string): The template string.[options={}]
(Object): The options object.[options.escape=_.templateSettings.escape]
(RegExp): The HTML “escape” delimiter.[options.evaluate=_.templateSettings.evaluate]
(RegExp): The “evaluate” delimiter.[options.imports=_.templateSettings.imports]
(Object): An object to import into the template as free variables.[options.interpolate=_.templateSettings.interpolate]
(RegExp): The “interpolate” delimiter.[options.sourceURL='lodash.templateSources[n]']
(string): The sourceURL of the compiled template.[options.variable='obj']
(string): The data object variable name.
Returns
(Function): Returns the compiled template function.
_.toLower([string=''])
_.toLower('--Foo-Bar--');
// => '--foo-bar--'
_.toLower('fooBar');
// => 'foobar'
_.toLower('__FOO_BAR__');
// => '__foo_bar__'
Converts string
, as a whole, to lower case just like
String#toLowerCase.
Underscore
Since
4.0.0
Arguments
[string='']
(string): The string to convert.
Returns
(string): Returns the lower cased string.
_.toUpper([string=''])
_.toUpper('--foo-bar--');
// => '--FOO-BAR--'
_.toUpper('fooBar');
// => 'FOOBAR'
_.toUpper('__foo_bar__');
// => '__FOO_BAR__'
Converts string
, as a whole, to upper case just like
String#toUpperCase.
Underscore
Since
4.0.0
Arguments
[string='']
(string): The string to convert.
Returns
(string): Returns the upper cased string.
_.trim([string=''], [chars=whitespace])
_.trim(' abc ');
// => 'abc'
_.trim('-_-abc-_-', '_-');
// => 'abc'
_.map([' foo ', ' bar '], _.trim);
// => ['foo', 'bar']
Removes leading and trailing whitespace or specified characters from string
.
Underscore
Since
3.0.0
Arguments
[string='']
(string): The string to trim.[chars=whitespace]
(string): The characters to trim.
Returns
(string): Returns the trimmed string.
_.trimEnd([string=''], [chars=whitespace])
_.trimEnd(' abc ');
// => ' abc'
_.trimEnd('-_-abc-_-', '_-');
// => '-_-abc'
Removes trailing whitespace or specified characters from string
.
Underscore
Since
4.0.0
Arguments
[string='']
(string): The string to trim.[chars=whitespace]
(string): The characters to trim.
Returns
(string): Returns the trimmed string.
_.trimStart([string=''], [chars=whitespace])
_.trimStart(' abc ');
// => 'abc '
_.trimStart('-_-abc-_-', '_-');
// => 'abc-_-'
Removes leading whitespace or specified characters from string
.
Underscore
Since
4.0.0
Arguments
[string='']
(string): The string to trim.[chars=whitespace]
(string): The characters to trim.
Returns
(string): Returns the trimmed string.
_.truncate([string=''], [options={}])
_.truncate('hi-diddly-ho there, neighborino');
// => 'hi-diddly-ho there, neighbo...'
_.truncate('hi-diddly-ho there, neighborino', {
'length': 24,
'separator': ' '
});
// => 'hi-diddly-ho there,...'
_.truncate('hi-diddly-ho there, neighborino', {
'length': 24,
'separator': /,? +/
});
// => 'hi-diddly-ho there...'
_.truncate('hi-diddly-ho there, neighborino', {
'omission': ' [...]'
});
// => 'hi-diddly-ho there, neig [...]'
Truncates string
if its longer than the given maximum string length.
The last characters of the truncated string are replaced with the omission
string which defaults to “…”.
Underscore
Since
4.0.0
Arguments
[string='']
(string): The string to truncate.[options={}]
(Object): The options object.[options.length=30]
(number): The maximum string length.[options.omission='...']
(string): The string to indicate text is omitted.[options.separator]
(RegExp|string): The separator pattern to truncate to.
Returns
(string): Returns the truncated string.
_.unescape([string=''])
_.unescape('fred, barney, & pebbles');
// => 'fred, barney, & pebbles'
The inverse of _.escape
; this method converts the HTML entities
&
, <
, >
, "
, and '
in string
to
their corresponding characters.
Note: No other HTML entities are unescaped. To unescape additional
HTML entities use a third-party library like he.
Underscore
_.unescape(string)
Since
0.6.0
Arguments
[string='']
(string): The string to unescape.
Returns
(string): Returns the unescaped string.
_.upperCase([string=''])
_.upperCase('--foo-bar');
// => 'FOO BAR'
_.upperCase('fooBar');
// => 'FOO BAR'
_.upperCase('__foo_bar__');
// => 'FOO BAR'
Converts string
, as space separated words, to upper case.
Underscore
Since
4.0.0
Arguments
[string='']
(string): The string to convert.
Returns
(string): Returns the upper cased string.
_.upperFirst([string=''])
_.upperFirst('fred');
// => 'Fred'
_.upperFirst('FRED');
// => 'FRED'
Converts the first character of string
to upper case.
Underscore
Since
4.0.0
Arguments
[string='']
(string): The string to convert.
Returns
(string): Returns the converted string.
_.words([string=''], [pattern])
_.words('fred, barney, & pebbles');
// => ['fred', 'barney', 'pebbles']
_.words('fred, barney, & pebbles', /[^, ]+/g);
// => ['fred', 'barney', '&', 'pebbles']
Splits string
into an array of its words.
Underscore
Since
3.0.0
Arguments
[string='']
(string): The string to inspect.[pattern]
(RegExp|string): The pattern to match words.
Returns
(Array): Returns the words of string
.
Util
_.attempt(func, [args])
// Avoid throwing errors for invalid selectors.
var elements = _.attempt(function(selector) {
return document.querySelectorAll(selector);
}, '>_>');
if (_.isError(elements)) {
elements = [];
}
Attempts to invoke func
, returning either the result or the caught error
object. Any additional arguments are provided to func
when it’s invoked.
Underscore
Since
3.0.0
Arguments
func
(Function): The function to attempt.[args]
(…*): The arguments to invokefunc
with.
Returns
(*): Returns the func
result or error object.
_.bindAll(object, methodNames)
var view = {
'label': 'docs',
'click': function() {
console.log('clicked ' + this.label);
}
};
_.bindAll(view, ['click']);
jQuery(element).on('click', view.click);
// => Logs 'clicked docs' when clicked.
Binds methods of an object to the object itself, overwriting the existing
method.
Note: This method doesn’t set the “length” property of bound functions.
Underscore
Since
0.1.0
Arguments
object
(Object): The object to bind and assign the bound methods to.methodNames
(…(string|string[])): The object method names to bind.
Returns
(Object): Returns object
.
_.cond(pairs)
var func = _.cond([
[_.matches({ 'a': 1 }), _.constant('matches A')],
[_.conforms({ 'b': _.isNumber }), _.constant('matches B')],
[_.stubTrue, _.constant('no match')]
]);
func({ 'a': 1, 'b': 2 });
// => 'matches A'
func({ 'a': 0, 'b': 1 });
// => 'matches B'
func({ 'a': '1', 'b': '2' });
// => 'no match'
Creates a function that iterates over pairs
and invokes the corresponding
function of the first predicate to return truthy. The predicate-function
pairs are invoked with the this
binding and arguments of the created
function.
Underscore
Since
4.0.0
Arguments
pairs
(Array): The predicate-function pairs.
Returns
(Function): Returns the new composite function.
_.conforms(source)
var objects = [
{ 'a': 2, 'b': 1 },
{ 'a': 1, 'b': 2 }
];
_.filter(objects, _.conforms({ 'b': function(n) { return n > 1; } }));
// => [{ 'a': 1, 'b': 2 }]
Creates a function that invokes the predicate properties of source
with
the corresponding property values of a given object, returning true
if
all predicates return truthy, else false
.
Note: The created function is equivalent to _.conformsTo
with
source
partially applied.
Underscore
Since
4.0.0
Arguments
source
(Object): The object of property predicates to conform to.
Returns
(Function): Returns the new spec function.
_.constant(value)
var objects = _.times(2, _.constant({ 'a': 1 }));
console.log(objects);
// => [{ 'a': 1 }, { 'a': 1 }]
console.log(objects[0] === objects[1]);
// => true
Creates a function that returns value
.
Underscore
Since
2.4.0
Arguments
value
(*): The value to return from the new function.
Returns
(Function): Returns the new constant function.
_.defaultTo(value, defaultValue)
_.defaultTo(1, 10);
// => 1
_.defaultTo(undefined, 10);
// => 10
Checks value
to determine whether a default value should be returned in
its place. The defaultValue
is returned if value
is NaN
, null
,
or undefined
.
Underscore
Since
4.14.0
Arguments
value
(*): The value to check.defaultValue
(*): The default value.
Returns
(*): Returns the resolved value.
_.flow([funcs])
function square(n) {
return n * n;
}
var addSquare = _.flow([_.add, square]);
addSquare(1, 2);
// => 9
Creates a function that returns the result of invoking the given functions
with the this
binding of the created function, where each successive
invocation is supplied the return value of the previous.
Underscore
Since
3.0.0
Arguments
[funcs]
(…(Function|Function[])): The functions to invoke.
Returns
(Function): Returns the new composite function.
_.flowRight([funcs])
function square(n) {
return n * n;
}
var addSquare = _.flowRight([square, _.add]);
addSquare(1, 2);
// => 9
//UnderScore
var greet = function(name){ return "hi: " + name; };
var exclaim = function(statement){ return statement.toUpperCase() + "!"; };
var welcome = _.compose(greet, exclaim);
welcome('moe');
=> 'hi: MOE!'
This method is like _.flow
except that it creates a function that
invokes the given functions from right to left.
Underscore
_.compose(*functions)
Returns the composition of a list of functions, where each function consumes the return value of the function that follows. In math terms, composing the functions f(), g(), and h() produces f(g(h())).
Since
3.0.0
Arguments
[funcs]
(…(Function|Function[])): The functions to invoke.
Returns
(Function): Returns the new composite function.
_.identity(value)
var object = { 'a': 1 };
console.log(_.identity(object) === object);
// => true
This method returns the first argument it receives.
Underscore
Since
0.1.0
Arguments
value
(*): Any value.
Returns
(*): Returns value
.
.iteratee([func=.identity])
var users = [
{ 'user': 'barney', 'age': 36, 'active': true },
{ 'user': 'fred', 'age': 40, 'active': false }
];
// The `_.matches` iteratee shorthand.
_.filter(users, _.iteratee({ 'user': 'barney', 'active': true }));
// => [{ 'user': 'barney', 'age': 36, 'active': true }]
// The `_.matchesProperty` iteratee shorthand.
_.filter(users, _.iteratee(['user', 'fred']));
// => [{ 'user': 'fred', 'age': 40 }]
// The `_.property` iteratee shorthand.
_.map(users, _.iteratee('user'));
// => ['barney', 'fred']
// Create custom iteratee shorthands.
_.iteratee = _.wrap(_.iteratee, function(iteratee, func) {
return !_.isRegExp(func) ? iteratee(func) : function(string) {
return func.test(string);
};
});
_.filter(['abc', 'def'], /ef/);
// => ['def']
Creates a function that invokes func
with the arguments of the created
function. If func
is a property name, the created function returns the
property value for a given element. If func
is an array or object, the
created function returns true
for elements that contain the equivalent
source properties, otherwise it returns false
.
Underscore
_.iteratee(value, [context])
Since
4.0.0
Arguments
[func=_.identity]
(*): The value to convert to a callback.
Returns
(Function): Returns the callback.
_.matches(source)
var objects = [
{ 'a': 1, 'b': 2, 'c': 3 },
{ 'a': 4, 'b': 5, 'c': 6 }
];
_.filter(objects, _.matches({ 'a': 4, 'c': 6 }));
// => [{ 'a': 4, 'b': 5, 'c': 6 }]
//Underscore
var ready = _.matcher({selected: true, visible: true});
var readyToGoList = _.filter(list, ready);
Creates a function that performs a partial deep comparison between a given
object and source
, returning true
if the given object has equivalent
property values, else false
.
Note: The created function is equivalent to _.isMatch
with source
partially applied.
Partial comparisons will match empty array and empty object source
values against any array or object value, respectively. See _.isEqual
for a list of supported value comparisons.
Underscore
_.matcher(attrs)
Alias: matches
Since
3.0.0
Arguments
source
(Object): The object of property values to match.
Returns
(Function): Returns the new spec function.
_.matchesProperty(path, srcValue)
var objects = [
{ 'a': 1, 'b': 2, 'c': 3 },
{ 'a': 4, 'b': 5, 'c': 6 }
];
_.find(objects, _.matchesProperty('a', 4));
// => { 'a': 4, 'b': 5, 'c': 6 }
Creates a function that performs a partial deep comparison between the
value at path
of a given object to srcValue
, returning true
if the
object value is equivalent, else false
.
Note: Partial comparisons will match empty array and empty object
srcValue
values against any array or object value, respectively. See
_.isEqual
for a list of supported value comparisons.
Underscore
Since
3.2.0
Arguments
path
(Array|string): The path of the property to get.srcValue
(*): The value to match.
Returns
(Function): Returns the new spec function.
_.method(path, [args])
var objects = [
{ 'a': { 'b': _.constant(2) } },
{ 'a': { 'b': _.constant(1) } }
];
_.map(objects, _.method('a.b'));
// => [2, 1]
_.map(objects, _.method(['a', 'b']));
// => [2, 1]
Creates a function that invokes the method at path
of a given object.
Any additional arguments are provided to the invoked method.
Underscore
Since
3.7.0
Arguments
path
(Array|string): The path of the method to invoke.[args]
(…*): The arguments to invoke the method with.
Returns
(Function): Returns the new invoker function.
_.methodOf(object, [args])
var array = _.times(3, _.constant),
object = { 'a': array, 'b': array, 'c': array };
_.map(['a[2]', 'c[0]'], _.methodOf(object));
// => [2, 0]
_.map([['a', '2'], ['c', '0']], _.methodOf(object));
// => [2, 0]
The opposite of _.method
; this method creates a function that invokes
the method at a given path of object
. Any additional arguments are
provided to the invoked method.
Underscore
Since
3.7.0
Arguments
object
(Object): The object to query.[args]
(…*): The arguments to invoke the method with.
Returns
(Function): Returns the new invoker function.
_.mixin([object=lodash], source, [options={}])
function vowels(string) {
return _.filter(string, function(v) {
return /[aeiou]/i.test(v);
});
}
_.mixin({ 'vowels': vowels });
_.vowels('fred');
// => ['e']
_('fred').vowels().value();
// => ['e']
_.mixin({ 'vowels': vowels }, { 'chain': false });
_('fred').vowels();
// => ['e']
Adds all own enumerable string keyed function properties of a source
object to the destination object. If object
is a function, then methods
are added to its prototype as well.
Note: Use _.runInContext
to create a pristine lodash
function to
avoid conflicts caused by modifying the original.
Underscore
Since
0.1.0
Arguments
[object=lodash]
(Function|Object): The destination object.source
(Object): The object of functions to add.[options={}]
(Object): The options object.[options.chain=true]
(boolean): Specify whether mixins are chainable.
Returns
(*): Returns object
.
_.noConflict()
var lodash = _.noConflict();
Reverts the _
variable to its previous value and returns a reference to
the lodash
function.
Underscore
_.noConflict()
Give control of the _ variable back to its previous owner. Returns a reference to the Underscore object.
Since
0.1.0
Returns
(Function): Returns the lodash
function.
_.noop()
_.times(2, _.noop);
// => [undefined, undefined]
This method returns undefined
.
Underscore
Since
2.3.0
_.nthArg([n=0])
var func = _.nthArg(1);
func('a', 'b', 'c', 'd');
// => 'b'
var func = _.nthArg(-2);
func('a', 'b', 'c', 'd');
// => 'c'
Creates a function that gets the argument at index n
. If n
is negative,
the nth argument from the end is returned.
Underscore
Since
4.0.0
Arguments
[n=0]
(number): The index of the argument to return.
Returns
(Function): Returns the new pass-thru function.
.over([iteratees=[.identity]])
var func = _.over([Math.max, Math.min]);
func(1, 2, 3, 4);
// => [4, 1]
Creates a function that invokes iteratees
with the arguments it receives
and returns their results.
Underscore
Since
4.0.0
Arguments
[iteratees=[_.identity]]
(…(Function|Function[])): The iteratees to invoke.
Returns
(Function): Returns the new function.
.overEvery([predicates=[.identity]])
var func = _.overEvery([Boolean, isFinite]);
func('1');
// => true
func(null);
// => false
func(NaN);
// => false
Creates a function that checks if all of the predicates
return
truthy when invoked with the arguments it receives.
Underscore
Since
4.0.0
Arguments
[predicates=[_.identity]]
(…(Function|Function[])): The predicates to check.
Returns
(Function): Returns the new function.
.overSome([predicates=[.identity]])
var func = _.overSome([Boolean, isFinite]);
func('1');
// => true
func(null);
// => true
func(NaN);
// => false
Creates a function that checks if any of the predicates
return
truthy when invoked with the arguments it receives.
Underscore
Since
4.0.0
Arguments
[predicates=[_.identity]]
(…(Function|Function[])): The predicates to check.
Returns
(Function): Returns the new function.
_.property(path)
var objects = [
{ 'a': { 'b': 2 } },
{ 'a': { 'b': 1 } }
];
_.map(objects, _.property('a.b'));
// => [2, 1]
_.map(_.sortBy(objects, _.property(['a', 'b'])), 'a.b');
// => [1, 2]
Creates a function that returns the value at path
of a given object.
Underscore
Since
2.4.0
Arguments
path
(Array|string): The path of the property to get.
Returns
(Function): Returns the new accessor function.
_.propertyOf(object)
var array = [0, 1, 2],
object = { 'a': array, 'b': array, 'c': array };
_.map(['a[2]', 'c[0]'], _.propertyOf(object));
// => [2, 0]
_.map([['a', '2'], ['c', '0']], _.propertyOf(object));
// => [2, 0]
The opposite of _.property
; this method creates a function that returns
the value at a given path of object
.
Underscore
Since
3.0.0
Arguments
object
(Object): The object to query.
Returns
(Function): Returns the new accessor function.
_.range([start=0], end, [step=1])
_.range(4);
// => [0, 1, 2, 3]
_.range(-4);
// => [0, -1, -2, -3]
_.range(1, 5);
// => [1, 2, 3, 4]
_.range(0, 20, 5);
// => [0, 5, 10, 15]
_.range(0, -4, -1);
// => [0, -1, -2, -3]
_.range(1, 4, 0);
// => [1, 1, 1]
_.range(0);
// => []
Creates an array of numbers (positive and/or negative) progressing from
start
up to, but not including, end
. A step of -1
is used if a negative
start
is specified without an end
or step
. If end
is not specified,
it is set to start
with start
then set to 0
.
Note: JavaScript follows the IEEE-754 standard for resolving
floating-point values which can produce unexpected results.
Underscore
_.range([start=0], end, [step=1])
Since
0.1.0
Arguments
[start=0]
(number): The start of the range.end
(number): The end of the range.[step=1]
(number): The value to increment or decrement by.
Returns
(Array): Returns the range of numbers.
_.rangeRight([start=0], end, [step=1])
_.rangeRight(4);
// => [3, 2, 1, 0]
_.rangeRight(-4);
// => [-3, -2, -1, 0]
_.rangeRight(1, 5);
// => [4, 3, 2, 1]
_.rangeRight(0, 20, 5);
// => [15, 10, 5, 0]
_.rangeRight(0, -4, -1);
// => [-3, -2, -1, 0]
_.rangeRight(1, 4, 0);
// => [1, 1, 1]
_.rangeRight(0);
// => []
This method is like _.range
except that it populates values in
descending order.
Underscore
Since
4.0.0
Arguments
[start=0]
(number): The start of the range.end
(number): The end of the range.[step=1]
(number): The value to increment or decrement by.
Returns
(Array): Returns the range of numbers.
_.runInContext([context=root])
_.mixin({ 'foo': _.constant('foo') });
var lodash = _.runInContext();
lodash.mixin({ 'bar': lodash.constant('bar') });
_.isFunction(_.foo);
// => true
_.isFunction(_.bar);
// => false
lodash.isFunction(lodash.foo);
// => false
lodash.isFunction(lodash.bar);
// => true
// Create a suped-up `defer` in Node.js.
var defer = _.runInContext({ 'setTimeout': setImmediate }).defer;
Create a new pristine lodash
function using the context
object.
Underscore
Since
1.1.0
Arguments
[context=root]
(Object): The context object.
Returns
(Function): Returns a new lodash
function.
_.stubArray()
var arrays = _.times(2, _.stubArray);
console.log(arrays);
// => [[], []]
console.log(arrays[0] === arrays[1]);
// => false
This method returns a new empty array.
Underscore
Since
4.13.0
Returns
(Array): Returns the new empty array.
_.stubFalse()
_.times(2, _.stubFalse);
// => [false, false]
This method returns false
.
Underscore
Since
4.13.0
Returns
(boolean): Returns false
.
_.stubObject()
var objects = _.times(2, _.stubObject);
console.log(objects);
// => [{}, {}]
console.log(objects[0] === objects[1]);
// => false
This method returns a new empty object.
Underscore
Since
4.13.0
Returns
(Object): Returns the new empty object.
_.stubString()
_.times(2, _.stubString);
// => ['', '']
This method returns an empty string.
Underscore
Since
4.13.0
Returns
(string): Returns the empty string.
_.stubTrue()
_.times(2, _.stubTrue);
// => [true, true]
This method returns true
.
Underscore
Since
4.13.0
Returns
(boolean): Returns true
.
.times(n, [iteratee=.identity])
_.times(3, String);
// => ['0', '1', '2']
_.times(4, _.constant(0));
// => [0, 0, 0, 0]
Invokes the iteratee n
times, returning an array of the results of
each invocation. The iteratee is invoked with one argument; (index).
Underscore
Since
0.1.0
Arguments
n
(number): The number of times to invokeiteratee
.[iteratee=_.identity]
(Function): The function invoked per iteration.
Returns
(Array): Returns the array of results.
_.toPath(value)
_.toPath('a.b.c');
// => ['a', 'b', 'c']
_.toPath('a[0].b.c');
// => ['a', '0', 'b', 'c']
Converts value
to a property path array.
Underscore
Since
4.0.0
Arguments
value
(*): The value to convert.
Returns
(Array): Returns the new property path array.
_.uniqueId([prefix=''])
_.uniqueId('contact_');
// => 'contact_104'
_.uniqueId();
// => '105'
Generates a unique ID. If prefix
is given, the ID is appended to it.
Underscore
_.uniqueId([prefix])
Since
0.1.0
Arguments
[prefix='']
(string): The value to prefix the ID with.
Returns
(string): Returns the unique ID.
Properties
_.VERSION
(string): The semantic version number.
_.templateSettings
(Object): By default, the template delimiters used by lodash are like those in embedded Ruby (ERB) as well as ES2015 template strings. Change the following template settings to use alternative delimiters.
_.templateSettings.escape
(RegExp): Used to detect data
property values to be HTML-escaped.
_.templateSettings.evaluate
(RegExp): Used to detect code to be evaluated.
_.templateSettings.imports
(Object): Used to import variables into the compiled template.
_.templateSettings.interpolate
(RegExp): Used to detect data
property values to inject.
_.templateSettings.variable
(string): Used to reference the data object in the template text.