lodash v4.17.20
_.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
_.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
_.after
_.ary
_.before
_.bind
_.bindKey
_.curry
_.curryRight
_.debounce
_.defer
_.delay
_.flip
_.memoize
_.negate
_.once
_.overArgs
_.partial
_.partialRight
_.rearg
_.rest
_.spread
_.throttle
_.unary
_.wrap
_.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
_.add
_.ceil
_.divide
_.floor
_.max
_.maxBy
_.mean
_.meanBy
_.min
_.minBy
_.multiply
_.round
_.subtract
_.sum
_.sumBy
_.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
_
_.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
_.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
_.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
_.VERSION
_.templateSettings
_.templateSettings.escape
_.templateSettings.evaluate
_.templateSettings.imports
_.templateSettings.interpolate
_.templateSettings.variable
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.
3.0.0
size
(number): The length of each chunkarray
(Array): The array to process.
(Array): Returns the new array of chunks.
_.chunk(2, ['a', 'b', 'c', 'd']);
// => [['a', 'b'], ['c', 'd']]
_.chunk(3, ['a', 'b', 'c', 'd']);
// => [['a', 'b', 'c'], ['d']]
Creates an array with all falsey values removed. The values false
, null
,
0
, ""
, undefined
, and NaN
are falsey.
0.1.0
array
(Array): The array to compact.
(Array): Returns the new array of filtered values.
_.compact([0, 1, false, 2, '', 3]);
// => [1, 2, 3]
Creates a new array concatenating array
with any additional arrays
and/or values.
4.0.0
array
(Array): The array to concatenate.values
(*|*[]): The values to concatenate.
(Array): Returns the new concatenated array.
var array = [1];
var other = _.concat(array, [2, [3], [[4]]]);
// => [1, 2, 3, [4]]
// => [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.
0.1.0
array
(Array): The array to inspect.values
(Array|Array[]): The values to exclude.
(Array): Returns the new array of filtered values.
_.difference([2, 1], [2, 3]);
// => [1]
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.
4.0.0
iteratee
(Function): The iteratee invoked per element.array
(Array): The array to inspect.values
(Array|Array[]): The values to exclude.
(Array): Returns the new array of filtered values.
_.differenceBy(Math.floor, [2.1, 1.2], [2.3, 3.4]);
// => [1.2]
// The `_.property` iteratee shorthand.
_.differenceBy('x', [{ 'x': 2 }, { 'x': 1 }], [{ 'x': 1 }]);
// => [{ 'x': 2 }]
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.
4.0.0
comparator
(Function): The comparator invoked per element.array
(Array): The array to inspect.values
(Array|Array[]): The values to exclude.
(Array): Returns the new array of filtered values.
var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }];
_.differenceWith(_.isEqual, objects, [{ 'x': 1, 'y': 2 }]);
// => [{ 'x': 2, 'y': 1 }]
Creates a slice of array
with n
elements dropped from the beginning.
0.5.0
n
(number): The number of elements to drop.array
(Array): The array to query.
(Array): Returns the slice of array
.
_.drop(1, [1, 2, 3]);
// => [2, 3]
_.drop(2, [1, 2, 3]);
// => [3]
_.drop(5, [1, 2, 3]);
// => []
_.drop(0, [1, 2, 3]);
// => [1, 2, 3]
Creates a slice of array
with n
elements dropped from the end.
3.0.0
n
(number): The number of elements to drop.array
(Array): The array to query.
(Array): Returns the slice of array
.
_.dropRight(1, [1, 2, 3]);
// => [1, 2]
_.dropRight(2, [1, 2, 3]);
// => [1]
_.dropRight(5, [1, 2, 3]);
// => []
_.dropRight(0, [1, 2, 3]);
// => [1, 2, 3]
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).
3.0.0
predicate
(Function): The function invoked per iteration.array
(Array): The array to query.
(Array): Returns the slice of array
.
var users = [
{ 'user': 'barney', 'active': true },
{ 'user': 'fred', 'active': false },
{ 'user': 'pebbles', 'active': false }
];
_.dropRightWhile(function(o) { return !o.active; }, users);
// => objects for ['barney']
// The `_.matches` iteratee shorthand.
_.dropRightWhile({ 'user': 'pebbles', 'active': false }, users);
// => objects for ['barney', 'fred']
// The `_.matchesProperty` iteratee shorthand.
_.dropRightWhile(['active', false], users);
// => objects for ['barney']
// The `_.property` iteratee shorthand.
_.dropRightWhile('active', users);
// => 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).
3.0.0
predicate
(Function): The function invoked per iteration.array
(Array): The array to query.
(Array): Returns the slice of array
.
var users = [
{ 'user': 'barney', 'active': false },
{ 'user': 'fred', 'active': false },
{ 'user': 'pebbles', 'active': true }
];
_.dropWhile(function(o) { return !o.active; }, users);
// => objects for ['pebbles']
// The `_.matches` iteratee shorthand.
_.dropWhile({ 'user': 'barney', 'active': false }, users);
// => objects for ['fred', 'pebbles']
// The `_.matchesProperty` iteratee shorthand.
_.dropWhile(['active', false], users);
// => objects for ['pebbles']
// The `_.property` iteratee shorthand.
_.dropWhile('active', users);
// => objects for ['barney', 'fred', 'pebbles']
Fills elements of array
with value
from start
up to, but not
including, end
.
3.2.0
start
(number): The start position.end
(number): The end position.value
(*): The value to fillarray
with.array
(Array): The array to fill.
(Array): Returns array
.
var array = [1, 2, 3];
_.fill(0, array.length, 'a', array);
// => ['a', 'a', 'a']
_.fill(0, Array(3).length, 2, Array(3));
// => [2, 2, 2]
_.fill(1, 3, '*', [4, 6, 8, 10]);
// => [4, '*', '*', 10]
This method is like _.find
except that it returns the index of the first
element predicate
returns truthy for instead of the element itself.
1.1.0
predicate
(Function): The function invoked per iteration.array
(Array): The array to inspect.
(number): Returns the index of the found element, else -1
.
var users = [
{ 'user': 'barney', 'active': false },
{ 'user': 'fred', 'active': false },
{ 'user': 'pebbles', 'active': true }
];
_.findIndex(function(o) { return o.user == 'barney'; }, users);
// => 0
// The `_.matches` iteratee shorthand.
_.findIndex({ 'user': 'fred', 'active': false }, users);
// => 1
// The `_.matchesProperty` iteratee shorthand.
_.findIndex(['active', false], users);
// => 0
// The `_.property` iteratee shorthand.
_.findIndex('active', users);
// => 2
This method is like _.findIndex
except that it iterates over elements
of collection
from right to left.
2.0.0
predicate
(Function): The function invoked per iteration.array
(Array): The array to inspect.
(number): Returns the index of the found element, else -1
.
var users = [
{ 'user': 'barney', 'active': true },
{ 'user': 'fred', 'active': false },
{ 'user': 'pebbles', 'active': false }
];
_.findLastIndex(function(o) { return o.user == 'pebbles'; }, users);
// => 2
// The `_.matches` iteratee shorthand.
_.findLastIndex({ 'user': 'barney', 'active': true }, users);
// => 0
// The `_.matchesProperty` iteratee shorthand.
_.findLastIndex(['active', false], users);
// => 2
// The `_.property` iteratee shorthand.
_.findLastIndex('active', users);
// => 0
Flattens array
a single level deep.
0.1.0
array
(Array): The array to flatten.
(Array): Returns the new flattened array.
_.flatten([1, [2, [3, [4]], 5]]);
// => [1, 2, [3, [4]], 5]
Recursively flattens array
.
3.0.0
array
(Array): The array to flatten.
(Array): Returns the new flattened array.
_.flattenDeep([1, [2, [3, [4]], 5]]);
// => [1, 2, 3, 4, 5]
Recursively flatten array
up to depth
times.
4.4.0
depth
(number): The maximum recursion depth.array
(Array): The array to flatten.
(Array): Returns the new flattened array.
var array = [1, [2, [3, [4]], 5]];
_.flattenDepth(1, array);
// => [1, 2, [3, [4]], 5]
_.flattenDepth(2, array);
// => [1, 2, 3, [4], 5]
The inverse of _.toPairs
; this method returns an object composed
from key-value pairs
.
4.0.0
pairs
(Array): The key-value pairs.
(Object): Returns the new object.
_.fromPairs([['a', 1], ['b', 2]]);
// => { 'a': 1, 'b': 2 }
Gets the first element of array
.
0.1.0
_.first
array
(Array): The array to query.
(*): Returns the first element of array
.
_.head([1, 2, 3]);
// => 1
_.head([]);
// => undefined
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
.
0.1.0
value
(*): The value to search for.array
(Array): The array to inspect.
(number): Returns the index of the matched value, else -1
.
_.indexOf(2, [1, 2, 1, 2]);
// => 1
// Search from the `fromIndex`.
_.indexOf([2, 2], [1, 2, 1, 2]);
// => 3
Gets all but the last element of array
.
0.1.0
array
(Array): The array to query.
(Array): Returns the slice of array
.
_.initial([1, 2, 3]);
// => [1, 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.
0.1.0
arrays
(Array): The arrays to inspect.arrays
(Array): The arrays to inspect.
(Array): Returns the new array of intersecting values.
_.intersection([2, 3], [2, 1]);
// => [2]
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).
4.0.0
iteratee
(Function): The iteratee invoked per element.arrays
(Array): The arrays to inspect.arrays
(Array): The arrays to inspect.
(Array): Returns the new array of intersecting values.
_.intersectionBy(Math.floor, [2.1, 1.2], [2.3, 3.4]);
// => [2.1]
// The `_.property` iteratee shorthand.
_.intersectionBy('x', [{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }]);
// => [{ 'x': 1 }]
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).
4.0.0
comparator
(Function): The comparator invoked per element.arrays
(Array): The arrays to inspect.arrays
(Array): The arrays to inspect.
(Array): Returns the new array of intersecting values.
var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }];
var others = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }];
_.intersectionWith(_.isEqual, objects, others);
// => [{ 'x': 1, 'y': 2 }]
Converts all elements in array
into a string separated by separator
.
4.0.0
separator
(string): The element separator.array
(Array): The array to convert.
(string): Returns the joined string.
_.join('~', ['a', 'b', 'c']);
// => 'a~b~c'
Gets the last element of array
.
0.1.0
array
(Array): The array to query.
(*): Returns the last element of array
.
_.last([1, 2, 3]);
// => 3
This method is like _.indexOf
except that it iterates over elements of
array
from right to left.
0.1.0
value
(*): The value to search for.array
(Array): The array to inspect.
(number): Returns the index of the matched value, else -1
.
_.lastIndexOf(2, [1, 2, 1, 2]);
// => 3
// Search from the `fromIndex`.
_.lastIndexOf([2, 2], [1, 2, 1, 2]);
// => 1
Gets the element at index n
of array
. If n
is negative, the nth
element from the end is returned.
4.11.0
n
(number): The index of the element to return.array
(Array): The array to query.
(*): Returns the nth element of array
.
var array = ['a', 'b', 'c', 'd'];
_.nth(1, array);
// => 'b'
_.nth(-2, array);
// => 'c';
Removes all given values from array
using
SameValueZero
for equality comparisons.
2.0.0
values
(*|*[]): The values to remove.array
(Array): The array to modify.
(Array): Returns array
.
var array = ['a', 'b', 'c', 'a', 'b', 'c'];
_.pull(['a', 'c'], array);
// => ['b', 'b']
This method is like _.pull
except that it accepts an array of values to remove.
4.0.0
values
(Array): The values to remove.array
(Array): The array to modify.
(Array): Returns array
.
var array = ['a', 'b', 'c', 'a', 'b', 'c'];
_.pullAll(['a', 'c'], array);
// => ['b', 'b']
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).
4.0.0
iteratee
(Function): The iteratee invoked per element.values
(Array): The values to remove.array
(Array): The array to modify.
(Array): Returns array
.
var array = [{ 'x': 1 }, { 'x': 2 }, { 'x': 3 }, { 'x': 1 }];
_.pullAllBy('x', [{ 'x': 1 }, { 'x': 3 }], array);
// => [{ 'x': 2 }]
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).
4.6.0
comparator
(Function): The comparator invoked per element.values
(Array): The values to remove.array
(Array): The array to modify.
(Array): Returns array
.
var array = [{ 'x': 1, 'y': 2 }, { 'x': 3, 'y': 4 }, { 'x': 5, 'y': 6 }];
_.pullAllWith(_.isEqual, [{ 'x': 3, 'y': 4 }], array);
// => [{ 'x': 1, 'y': 2 }, { 'x': 5, 'y': 6 }]
Removes elements from array
corresponding to indexes
and returns an
array of removed elements.
3.0.0
indexes
(number|number[]): The indexes of elements to remove.array
(Array): The array to modify.
(Array): Returns the new array of removed elements.
var array = ['a', 'b', 'c', 'd'];
var pulled = _.pullAt([1, 3], array);
// => ['a', 'c']
// => ['b', 'd']
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).
2.0.0
predicate
(Function): The function invoked per iteration.array
(Array): The array to modify.
(Array): Returns the new array of removed elements.
var array = [1, 2, 3, 4];
var evens = _.remove(function(n) {
return n % 2 == 0;
}, array);
// => [1, 3]
// => [2, 4]
Reverses array
so that the first element becomes the last, the second
element becomes the second to last, and so on.
4.0.0
array
(Array): The array to modify.
(Array): Returns array
.
var array = [1, 2, 3];
_.reverse(array);
// => [3, 2, 1]
// => [3, 2, 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.
3.0.0
start
(number): The start position.end
(number): The end position.array
(Array): The array to slice.
(Array): Returns the slice of array
.
Uses a binary search to determine the lowest index at which value
should be inserted into array
in order to maintain its sort order.
0.1.0
value
(*): The value to evaluate.array
(Array): The sorted array to inspect.
(number): Returns the index at which value
should be inserted into array
.
_.sortedIndex(40, [30, 50]);
// => 1
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).
4.0.0
iteratee
(Function): The iteratee invoked per element.value
(*): The value to evaluate.array
(Array): The sorted array to inspect.
(number): Returns the index at which value
should be inserted into array
.
var objects = [{ 'x': 4 }, { 'x': 5 }];
_.sortedIndexBy(function(o) { return o.x; }, { 'x': 4 }, objects);
// => 0
// The `_.property` iteratee shorthand.
_.sortedIndexBy('x', { 'x': 4 }, objects);
// => 0
This method is like _.indexOf
except that it performs a binary
search on a sorted array
.
4.0.0
value
(*): The value to search for.array
(Array): The array to inspect.
(number): Returns the index of the matched value, else -1
.
_.sortedIndexOf(5, [4, 5, 5, 5, 6]);
// => 1
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.
3.0.0
value
(*): The value to evaluate.array
(Array): The sorted array to inspect.
(number): Returns the index at which value
should be inserted into array
.
_.sortedLastIndex(5, [4, 5, 5, 5, 6]);
// => 4
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).
4.0.0
iteratee
(Function): The iteratee invoked per element.value
(*): The value to evaluate.array
(Array): The sorted array to inspect.
(number): Returns the index at which value
should be inserted into array
.
var objects = [{ 'x': 4 }, { 'x': 5 }];
_.sortedLastIndexBy(function(o) { return o.x; }, { 'x': 4 }, objects);
// => 1
// The `_.property` iteratee shorthand.
_.sortedLastIndexBy('x', { 'x': 4 }, objects);
// => 1
This method is like _.lastIndexOf
except that it performs a binary
search on a sorted array
.
4.0.0
value
(*): The value to search for.array
(Array): The array to inspect.
(number): Returns the index of the matched value, else -1
.
_.sortedLastIndexOf(5, [4, 5, 5, 5, 6]);
// => 3
This method is like _.uniq
except that it's designed and optimized
for sorted arrays.
4.0.0
array
(Array): The array to inspect.
(Array): Returns the new duplicate free array.
_.sortedUniq([1, 1, 2]);
// => [1, 2]
This method is like _.uniqBy
except that it's designed and optimized
for sorted arrays.
4.0.0
iteratee
(Function): The iteratee invoked per element.array
(Array): The array to inspect.
(Array): Returns the new duplicate free array.
_.sortedUniqBy(Math.floor, [1.1, 1.2, 2.3, 2.4]);
// => [1.1, 2.3]
Gets all but the first element of array
.
4.0.0
array
(Array): The array to query.
(Array): Returns the slice of array
.
_.tail([1, 2, 3]);
// => [2, 3]
Creates a slice of array
with n
elements taken from the beginning.
0.1.0
n
(number): The number of elements to take.array
(Array): The array to query.
(Array): Returns the slice of array
.
_.take(1, [1, 2, 3]);
// => [1]
_.take(2, [1, 2, 3]);
// => [1, 2]
_.take(5, [1, 2, 3]);
// => [1, 2, 3]
_.take(0, [1, 2, 3]);
// => []
Creates a slice of array
with n
elements taken from the end.
3.0.0
n
(number): The number of elements to take.array
(Array): The array to query.
(Array): Returns the slice of array
.
_.takeRight(1, [1, 2, 3]);
// => [3]
_.takeRight(2, [1, 2, 3]);
// => [2, 3]
_.takeRight(5, [1, 2, 3]);
// => [1, 2, 3]
_.takeRight(0, [1, 2, 3]);
// => []
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).
3.0.0
predicate
(Function): The function invoked per iteration.array
(Array): The array to query.
(Array): Returns the slice of array
.
var users = [
{ 'user': 'barney', 'active': true },
{ 'user': 'fred', 'active': false },
{ 'user': 'pebbles', 'active': false }
];
_.takeRightWhile(function(o) { return !o.active; }, users);
// => objects for ['fred', 'pebbles']
// The `_.matches` iteratee shorthand.
_.takeRightWhile({ 'user': 'pebbles', 'active': false }, users);
// => objects for ['pebbles']
// The `_.matchesProperty` iteratee shorthand.
_.takeRightWhile(['active', false], users);
// => objects for ['fred', 'pebbles']
// The `_.property` iteratee shorthand.
_.takeRightWhile('active', users);
// => []
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).
3.0.0
predicate
(Function): The function invoked per iteration.array
(Array): The array to query.
(Array): Returns the slice of array
.
var users = [
{ 'user': 'barney', 'active': false },
{ 'user': 'fred', 'active': false },
{ 'user': 'pebbles', 'active': true }
];
_.takeWhile(function(o) { return !o.active; }, users);
// => objects for ['barney', 'fred']
// The `_.matches` iteratee shorthand.
_.takeWhile({ 'user': 'barney', 'active': false }, users);
// => objects for ['barney']
// The `_.matchesProperty` iteratee shorthand.
_.takeWhile(['active', false], users);
// => objects for ['barney', 'fred']
// The `_.property` iteratee shorthand.
_.takeWhile('active', users);
// => []
Creates an array of unique values, in order, from all given arrays using
SameValueZero
for equality comparisons.
0.1.0
arrays
(Array): The arrays to inspect.arrays
(Array): The arrays to inspect.
(Array): Returns the new array of combined values.
_.union([1, 2], [2]);
// => [2, 1]
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).
4.0.0
iteratee
(Function): The iteratee invoked per element.arrays
(Array): The arrays to inspect.arrays
(Array): The arrays to inspect.
(Array): Returns the new array of combined values.
_.unionBy(Math.floor, [2.1], [1.2, 2.3]);
// => [2.1, 1.2]
// The `_.property` iteratee shorthand.
_.unionBy('x', [{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }]);
// => [{ 'x': 1 }, { 'x': 2 }]
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).
4.0.0
comparator
(Function): The comparator invoked per element.arrays
(Array): The arrays to inspect.arrays
(Array): The arrays to inspect.
(Array): Returns the new array of combined values.
var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }];
var others = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }];
_.unionWith(_.isEqual, objects, others);
// => [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }, { 'x': 1, 'y': 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.
0.1.0
array
(Array): The array to inspect.
(Array): Returns the new duplicate free array.
_.uniq([2, 1, 2]);
// => [2, 1]
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).
4.0.0
iteratee
(Function): The iteratee invoked per element.array
(Array): The array to inspect.
(Array): Returns the new duplicate free array.
_.uniqBy(Math.floor, [2.1, 1.2, 2.3]);
// => [2.1, 1.2]
// The `_.property` iteratee shorthand.
_.uniqBy('x', [{ 'x': 1 }, { 'x': 2 }, { 'x': 1 }]);
// => [{ 'x': 1 }, { 'x': 2 }]
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).
4.0.0
comparator
(Function): The comparator invoked per element.array
(Array): The array to inspect.
(Array): Returns the new duplicate free array.
var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }, { 'x': 1, 'y': 2 }];
_.uniqWith(_.isEqual, objects);
// => [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]
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.
1.2.0
array
(Array): The array of grouped elements to process.
(Array): Returns the new array of regrouped elements.
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 _.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).
3.8.0
iteratee
(Function): The function to combine regrouped values.array
(Array): The array of grouped elements to process.
(Array): Returns the new array of regrouped elements.
var zipped = _.zip([1, 2], [[10, 20], [100, 200]]);
// => [[1, 10, 100], [2, 20, 200]]
_.unzipWith(_.add, zipped);
// => [3, 30, 300]
Creates an array excluding all given values using
SameValueZero
for equality comparisons.
Note: Unlike _.pull
, this method returns a new array.
0.1.0
values
(*|*[]): The values to exclude.array
(Array): The array to inspect.
(Array): Returns the new array of filtered values.
_.without([1, 2], [2, 1, 2, 3]);
// => [3]
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.
2.4.0
arrays
(Array): The arrays to inspect.arrays
(Array): The arrays to inspect.
(Array): Returns the new array of filtered values.
_.xor([2, 3], [2, 1]);
// => [1, 3]
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).
4.0.0
iteratee
(Function): The iteratee invoked per element.arrays
(Array): The arrays to inspect.arrays
(Array): The arrays to inspect.
(Array): Returns the new array of filtered values.
_.xorBy(Math.floor, [2.1, 1.2], [2.3, 3.4]);
// => [1.2, 3.4]
// The `_.property` iteratee shorthand.
_.xorBy('x', [{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }]);
// => [{ 'x': 2 }]
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).
4.0.0
comparator
(Function): The comparator invoked per element.arrays
(Array): The arrays to inspect.arrays
(Array): The arrays to inspect.
(Array): Returns the new array of filtered values.
var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }];
var others = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }];
_.xorWith(_.isEqual, objects, others);
// => [{ 'x': 2, 'y': 1 }, { 'x': 1, 'y': 1 }]
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.
0.1.0
arrays
(Array): The arrays to process.arrays
(Array): The arrays to process.
(Array): Returns the new array of grouped elements.
_.zip(['a', 'b'], [[1, 2], [true, false]]);
// => [['a', 1, true], ['b', 2, false]]
This method is like _.fromPairs
except that it accepts two arrays,
one of property identifiers and one of corresponding values.
0.4.0
props
(Array): The property identifiers.values
(Array): The property values.
(Object): Returns the new object.
_.zipObject(['a', 'b'], [1, 2]);
// => { 'a': 1, 'b': 2 }
This method is like _.zipObject
except that it supports property paths.
4.1.0
props
(Array): The property identifiers.values
(Array): The property values.
(Object): Returns the new object.
_.zipObjectDeep(['a.b[0].c', 'a.b[1].d'], [1, 2]);
// => { 'a': { 'b': [{ 'c': 1 }, { 'd': 2 }] } }
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).
3.8.0
iteratee
(Function): The function to combine grouped values.arrays
(Array): The arrays to process.arrays
(Array): The arrays to process.
(Array): Returns the new array of grouped elements.
_.zipWith([[100, 200], function(a, b, c) {
return a + b + c;
}], [1, 2], [10, 20]);
// => [111, 222]
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).
0.5.0
iteratee
(Function): The iteratee to transform keys.collection
(Array|Object): The collection to iterate over.
(Object): Returns the composed aggregate object.
_.countBy(Math.floor, [6.1, 4.2, 6.3]);
// => { '4': 1, '6': 2 }
// The `_.property` iteratee shorthand.
_.countBy('length', ['one', 'two', 'three']);
// => { '3': 2, '5': 1 }
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.
0.1.0
predicate
(Function): The function invoked per iteration.collection
(Array|Object): The collection to iterate over.
(boolean): Returns true
if all elements pass the predicate check, else false
.
_.every(Boolean, [true, 1, null, 'yes']);
// => false
var users = [
{ 'user': 'barney', 'age': 36, 'active': false },
{ 'user': 'fred', 'age': 40, 'active': false }
];
// The `_.matches` iteratee shorthand.
_.every({ 'user': 'barney', 'active': false }, users);
// => false
// The `_.matchesProperty` iteratee shorthand.
_.every(['active', false], users);
// => true
// The `_.property` iteratee shorthand.
_.every('active', users);
// => false
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.
0.1.0
predicate
(Function): The function invoked per iteration.collection
(Array|Object): The collection to iterate over.
(Array): Returns the new filtered array.
var users = [
{ 'user': 'barney', 'age': 36, 'active': true },
{ 'user': 'fred', 'age': 40, 'active': false }
];
_.filter(function(o) { return !o.active; }, users);
// => objects for ['fred']
// The `_.matches` iteratee shorthand.
_.filter({ 'age': 36, 'active': true }, users);
// => objects for ['barney']
// The `_.matchesProperty` iteratee shorthand.
_.filter(['active', false], users);
// => objects for ['fred']
// The `_.property` iteratee shorthand.
_.filter('active', users);
// => objects for ['barney']
// Combining several predicates using `_.overEvery` or `_.overSome`.
_.filter(_.overSome([{ 'age': 36 }, ['age', 40]]), users);
// => objects for ['fred', 'barney']
Iterates over elements of collection
, returning the first element
predicate
returns truthy for. The predicate is invoked with three
arguments: (value, index|key, collection).
0.1.0
predicate
(Function): The function invoked per iteration.collection
(Array|Object): The collection to inspect.
(*): Returns the matched element, else undefined
.
var users = [
{ 'user': 'barney', 'age': 36, 'active': true },
{ 'user': 'fred', 'age': 40, 'active': false },
{ 'user': 'pebbles', 'age': 1, 'active': true }
];
_.find(function(o) { return o.age < 40; }, users);
// => object for 'barney'
// The `_.matches` iteratee shorthand.
_.find({ 'age': 1, 'active': true }, users);
// => object for 'pebbles'
// The `_.matchesProperty` iteratee shorthand.
_.find(['active', false], users);
// => object for 'fred'
// The `_.property` iteratee shorthand.
_.find('active', users);
// => object for 'barney'
This method is like _.find
except that it iterates over elements of
collection
from right to left.
2.0.0
predicate
(Function): The function invoked per iteration.collection
(Array|Object): The collection to inspect.
(*): Returns the matched element, else undefined
.
_.findLast(function(n) {
return n % 2 == 1;
}, [1, 2, 3, 4]);
// => 3
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).
4.0.0
iteratee
(Function): The function invoked per iteration.collection
(Array|Object): The collection to iterate over.
(Array): Returns the new flattened array.
function duplicate(n) {
return [n, n];
}
_.flatMap(duplicate, [1, 2]);
// => [1, 1, 2, 2]
This method is like _.flatMap
except that it recursively flattens the
mapped results.
4.7.0
iteratee
(Function): The function invoked per iteration.collection
(Array|Object): The collection to iterate over.
(Array): Returns the new flattened array.
function duplicate(n) {
return [[[n, n]]];
}
_.flatMapDeep(duplicate, [1, 2]);
// => [1, 1, 2, 2]
This method is like _.flatMap
except that it recursively flattens the
mapped results up to depth
times.
4.7.0
iteratee
(Function): The function invoked per iteration.depth
(number): The maximum recursion depth.collection
(Array|Object): The collection to iterate over.
(Array): Returns the new flattened array.
function duplicate(n) {
return [[[n, n]]];
}
_.flatMapDepth(duplicate, 2, [1, 2]);
// => [[1, 1], [2, 2]]
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.
0.1.0
_.each
iteratee
(Function): The function invoked per iteration.collection
(Array|Object): The collection to iterate over.
(*): Returns collection
.
_.forEach(function(value) {
console.log(value);
}, [1, 2]);
// => Logs `1` then `2`.
_.forEach(function(value, key) {
console.log(key);
}, { 'a': 1, 'b': 2 });
// => Logs 'a' then 'b' (iteration order is not guaranteed).
This method is like _.forEach
except that it iterates over elements of
collection
from right to left.
2.0.0
_.eachRight
iteratee
(Function): The function invoked per iteration.collection
(Array|Object): The collection to iterate over.
(*): Returns collection
.
_.forEachRight(function(value) {
console.log(value);
}, [1, 2]);
// => Logs `2` then `1`.
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).
0.1.0
iteratee
(Function): The iteratee to transform keys.collection
(Array|Object): The collection to iterate over.
(Object): Returns the composed aggregate object.
_.groupBy(Math.floor, [6.1, 4.2, 6.3]);
// => { '4': [4.2], '6': [6.1, 6.3] }
// The `_.property` iteratee shorthand.
_.groupBy('length', ['one', 'two', 'three']);
// => { '3': ['one', 'two'], '5': ['three'] }
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
.
0.1.0
value
(*): The value to search for.collection
(Array|Object|string): The collection to inspect.
(boolean): Returns true
if value
is found, else false
.
_.includes(1, [1, 2, 3]);
// => true
_.includes([1, 2], [1, 2, 3]);
// => false
_.includes(1, { 'a': 1, 'b': 2 });
// => true
_.includes('bc', 'abcd');
// => true
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
.
4.0.0
path
(Array|Function|string): The path of the method to invoke or the function invoked per iteration.collection
(Array|Object): The collection to iterate over.
(Array): Returns the array of results.
_.invokeMap('sort', [[5, 1, 7], [3, 2, 1]]);
// => [[1, 5, 7], [1, 2, 3]]
_.invokeMap([String.prototype.split, ''], [123, 456]);
// => [['1', '2', '3'], ['4', '5', '6']]
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).
4.0.0
iteratee
(Function): The iteratee to transform keys.collection
(Array|Object): The collection to iterate over.
(Object): Returns the composed aggregate object.
var array = [
{ 'dir': 'left', 'code': 97 },
{ 'dir': 'right', 'code': 100 }
];
_.keyBy(function(o) {
return String.fromCharCode(o.code);
}, array);
// => { 'a': { 'dir': 'left', 'code': 97 }, 'd': { 'dir': 'right', 'code': 100 } }
_.keyBy('dir', array);
// => { 'left': { 'dir': 'left', 'code': 97 }, 'right': { 'dir': 'right', 'code': 100 } }
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
0.1.0
iteratee
(Function): The function invoked per iteration.collection
(Array|Object): The collection to iterate over.
(Array): Returns the new mapped array.
function square(n) {
return n * n;
}
_.map(square, [4, 8]);
// => [16, 64]
_.map(square, { 'a': 4, 'b': 8 });
// => [16, 64] (iteration order is not guaranteed)
var users = [
{ 'user': 'barney' },
{ 'user': 'fred' }
];
// The `_.property` iteratee shorthand.
_.map('user', users);
// => ['barney', 'fred']
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.
4.0.0
iteratees
(Array[]|Function[]|Object[]|string[]): The iteratees to sort by.orders
(string[]): The sort orders ofiteratees
.collection
(Array|Object): The collection to iterate over.
(Array): Returns the new sorted array.
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(['user', 'age'], ['asc', 'desc'], users);
// => objects for [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 40]]
Creates an array of elements split into two groups, the first of which
contains elements predicate
returns truthy for, the second of which
contains elements predicate
returns falsey for. The predicate is
invoked with one argument: (value).
3.0.0
predicate
(Function): The function invoked per iteration.collection
(Array|Object): The collection to iterate over.
(Array): Returns the array of grouped elements.
var users = [
{ 'user': 'barney', 'age': 36, 'active': false },
{ 'user': 'fred', 'age': 40, 'active': true },
{ 'user': 'pebbles', 'age': 1, 'active': false }
];
_.partition(function(o) { return o.active; }, users);
// => objects for [['fred'], ['barney', 'pebbles']]
// The `_.matches` iteratee shorthand.
_.partition({ 'age': 1, 'active': false }, users);
// => objects for [['pebbles'], ['barney', 'fred']]
// The `_.matchesProperty` iteratee shorthand.
_.partition(['active', false], users);
// => objects for [['barney', 'pebbles'], ['fred']]
// The `_.property` iteratee shorthand.
_.partition('active', users);
// => objects for [['fred'], ['barney', 'pebbles']]
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
0.1.0
iteratee
(Function): The function invoked per iteration.accumulator
(*): The initial value.collection
(Array|Object): The collection to iterate over.
(*): Returns the accumulated value.
_.reduce(function(sum, n) {
return sum + n;
}, 0, [1, 2]);
// => 3
_.reduce(function(result, value, key) {
(result[value] || (result[value] = [])).push(key);
return result;
}, {}, { 'a': 1, 'b': 2, 'c': 1 });
// => { '1': ['a', 'c'], '2': ['b'] } (iteration order is not guaranteed)
This method is like _.reduce
except that it iterates over elements of
collection
from right to left.
0.1.0
iteratee
(Function): The function invoked per iteration.accumulator
(*): The initial value.collection
(Array|Object): The collection to iterate over.
(*): Returns the accumulated value.
var array = [[0, 1], [2, 3], [4, 5]];
_.reduceRight(function(flattened, other) {
return flattened.concat(other);
}, [], array);
// => [4, 5, 2, 3, 0, 1]
The opposite of _.filter
; this method returns the elements of collection
that predicate
does not return truthy for.
0.1.0
predicate
(Function): The function invoked per iteration.collection
(Array|Object): The collection to iterate over.
(Array): Returns the new filtered array.
var users = [
{ 'user': 'barney', 'age': 36, 'active': false },
{ 'user': 'fred', 'age': 40, 'active': true }
];
_.reject(function(o) { return !o.active; }, users);
// => objects for ['fred']
// The `_.matches` iteratee shorthand.
_.reject({ 'age': 40, 'active': true }, users);
// => objects for ['barney']
// The `_.matchesProperty` iteratee shorthand.
_.reject(['active', false], users);
// => objects for ['fred']
// The `_.property` iteratee shorthand.
_.reject('active', users);
// => objects for ['barney']
Gets a random element from collection
.
2.0.0
collection
(Array|Object): The collection to sample.
(*): Returns the random element.
_.sample([1, 2, 3, 4]);
// => 2
Gets n
random elements at unique keys from collection
up to the
size of collection
.
4.0.0
n
(number): The number of elements to sample.collection
(Array|Object): The collection to sample.
(Array): Returns the random elements.
_.sampleSize(2, [1, 2, 3]);
// => [3, 1]
_.sampleSize(4, [1, 2, 3]);
// => [2, 3, 1]
Creates an array of shuffled values, using a version of the Fisher-Yates shuffle.
0.1.0
collection
(Array|Object): The collection to shuffle.
(Array): Returns the new shuffled array.
_.shuffle([1, 2, 3, 4]);
// => [4, 1, 3, 2]
Gets the size of collection
by returning its length for array-like
values or the number of own enumerable string keyed properties for objects.
0.1.0
collection
(Array|Object|string): The collection to inspect.
(number): Returns the collection size.
_.size([1, 2, 3]);
// => 3
_.size({ 'a': 1, 'b': 2 });
// => 2
_.size('pebbles');
// => 7
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).
0.1.0
predicate
(Function): The function invoked per iteration.collection
(Array|Object): The collection to iterate over.
(boolean): Returns true
if any element passes the predicate check, else false
.
_.some(Boolean, [null, 0, 'yes', false]);
// => true
var users = [
{ 'user': 'barney', 'active': true },
{ 'user': 'fred', 'active': false }
];
// The `_.matches` iteratee shorthand.
_.some({ 'user': 'barney', 'active': false }, users);
// => false
// The `_.matchesProperty` iteratee shorthand.
_.some(['active', false], users);
// => true
// The `_.property` iteratee shorthand.
_.some('active', users);
// => true
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).
0.1.0
iteratees
(Function|Function[]): The iteratees to sort by.collection
(Array|Object): The collection to iterate over.
(Array): Returns the new sorted array.
var users = [
{ 'user': 'fred', 'age': 48 },
{ 'user': 'barney', 'age': 36 },
{ 'user': 'fred', 'age': 30 },
{ 'user': 'barney', 'age': 34 }
];
_.sortBy([function(o) { return o.user; }], users);
// => objects for [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 30]]
_.sortBy(['user', 'age'], users);
// => objects for [['barney', 34], ['barney', 36], ['fred', 30], ['fred', 48]]
Gets the timestamp of the number of milliseconds that have elapsed since
the Unix epoch (1 January 1970 00
:00:00 UTC).
2.4.0
(number): Returns the timestamp.
_.defer([function(stamp) {
console.log(_.now(null) - stamp);
}, _.now()]);
// => Logs the number of milliseconds it took for the deferred invocation.
The opposite of _.before
; this method creates a function that invokes
func
once it's called n
or more times.
0.1.0
func
(Function): The function to restrict.n
(number): The number of calls beforefunc
is invoked.
(Function): Returns the new restricted function.
var saves = ['profile', 'settings'];
var done = _.after(function() {
console.log('done saving!');
}, saves.length);
_.forEach(function(type) {
asyncSave({ 'type': type, 'complete': done });
}, saves);
// => Logs 'done saving!' after the two async saves have completed.
Creates a function that invokes func
, with up to n
arguments,
ignoring any additional arguments.
3.0.0
n
(number): The arity cap.func
(Function): The function to cap arguments for.
(Function): Returns the new capped function.
_.map(_.ary(parseInt, 1), ['6', '8', '10']);
// => [6, 8, 10]
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.
3.0.0
func
(Function): The function to restrict.n
(number): The number of calls at whichfunc
is no longer invoked.
(Function): Returns the new restricted function.
jQuery(element).on('click', _.before(addContactToList, 5));
// => Allows adding up to 4 contacts to the list.
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.
0.1.0
func
(Function): The function to bind.thisArg
(*): Thethis
binding offunc
.
(Function): Returns the new bound function.
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 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.
0.10.0
object
(Object): The object to invoke the method on.key
(string): The key of the method.
(Function): Returns the new bound function.
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 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.
2.0.0
func
(Function): The function to curry.
(Function): Returns the new curried function.
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]
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.
3.0.0
func
(Function): The function to curry.
(Function): Returns the new curried function.
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]
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
.
0.1.0
wait
(number): The number of milliseconds to delay.func
(Function): The function to debounce.
(Function): Returns the new debounced function.
// Avoid costly calculations while the window size is in flux.
jQuery(window).on('resize', _.debounce(150, calculateLayout));
// Invoke `sendMail` when clicked, debouncing subsequent calls.
jQuery(element).on('click', _.debounce([300, {
'leading': true,
'trailing': false
}], sendMail));
// Ensure `batchLog` is invoked once after 1 second of debounced calls.
var debounced = _.debounce([250, { 'maxWait': 1000 }], batchLog);
var source = new EventSource('/stream');
jQuery(source).on('message', debounced);
// Cancel the trailing debounced invocation.
jQuery(window).on('popstate', debounced.cancel);
Defers invoking the func
until the current call stack has cleared. Any
additional arguments are provided to func
when it's invoked.
0.1.0
func
(Function): The function to defer.
(number): Returns the timer id.
_.defer([function(text) {
console.log(text);
}, 'deferred']);
// => Logs 'deferred' after one millisecond.
Invokes func
after wait
milliseconds. Any additional arguments are
provided to func
when it's invoked.
0.1.0
wait
(number): The number of milliseconds to delay invocation.func
(Function): The function to delay.
(number): Returns the timer id.
_.delay([1000, 'later'], function(text) {
console.log(text);
});
// => Logs 'later' after one second.
Creates a function that invokes func
with arguments reversed.
4.0.0
func
(Function): The function to flip arguments for.
(Function): Returns the new flipped function.
var flipped = _.flip(function() {
return _.toArray(arguments);
});
flipped('a', 'b', 'c', 'd');
// => ['d', 'c', 'b', 'a']
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
.
0.1.0
func
(Function): The function to have its output memoized.
(Function): Returns the new memoized function.
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 negates the result of the predicate func
. The
func
predicate is invoked with the this
binding and arguments of the
created function.
3.0.0
predicate
(Function): The predicate to negate.
(Function): Returns the new negated function.
function isEven(n) {
return n % 2 == 0;
}
_.filter(_.negate(isEven), [1, 2, 3, 4, 5, 6]);
// => [1, 3, 5]
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.
0.1.0
func
(Function): The function to restrict.
(Function): Returns the new restricted function.
var initialize = _.once(createApplication);
initialize();
initialize();
// => `createApplication` is invoked once
Creates a function that invokes func
with its arguments transformed.
4.0.0
func
(Function): The function to wrap.transforms
(Function|Function[]): The argument transforms.
(Function): Returns the new function.
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 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.
0.2.0
func
(Function): The function to partially apply arguments to.partials
(*|*[]): The arguments to be partially applied.
(Function): Returns the new partially applied function.
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'
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.
1.0.0
func
(Function): The function to partially apply arguments to.partials
(*|*[]): The arguments to be partially applied.
(Function): Returns the new partially applied function.
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'
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.
3.0.0
indexes
(number|number[]): The arranged argument indexes.func
(Function): The function to rearrange arguments for.
(Function): Returns the new function.
var rearged = _.rearg([2, 0, 1], function(a, b, c) {
return [a, b, c];
});
rearged('b', 'c', 'a')
// => ['a', 'b', 'c']
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.
4.0.0
func
(Function): The function to apply a rest parameter to.
(Function): Returns the new function.
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
create function and an array of arguments much like
Function#apply
.
Note: This method is based on the
spread operator.
3.2.0
func
(Function): The function to spread arguments over.
(Function): Returns the new function.
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 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
.
0.1.0
wait
(number): The number of milliseconds to throttle invocations to.func
(Function): The function to throttle.
(Function): Returns the new throttled function.
// Avoid excessively updating the position while scrolling.
jQuery(window).on('scroll', _.throttle(100, updatePosition));
// Invoke `renewToken` when the click event is fired, but not more than once every 5 minutes.
var throttled = _.throttle([300000, { 'trailing': false }], renewToken);
jQuery(element).on('click', throttled);
// Cancel the trailing throttled invocation.
jQuery(window).on('popstate', throttled.cancel);
Creates a function that accepts up to one argument, ignoring any additional arguments.
4.0.0
func
(Function): The function to cap arguments for.
(Function): Returns the new capped function.
_.map(_.unary(parseInt), ['6', '8', '10']);
// => [6, 8, 10]
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.
0.1.0
wrapper
(Function): The wrapper function.value
(*): The value to wrap.
(Function): Returns the new function.
var p = _.wrap(function(func, text) {
return '<p>' + func(text) + '</p>';
}, _.escape);
p('fred, barney, & pebbles');
// => '<p>fred, barney, & pebbles</p>'
Casts value
as an array if it's not one.
4.4.0
value
(*): The value to inspect.
(Array): Returns the cast array.
_.castArray(1);
// => [1]
_.castArray({ 'a': 1 });
// => [{ 'a': 1 }]
_.castArray('abc');
// => ['abc']
_.castArray(null);
// => [null]
_.castArray(undefined);
// => [undefined]
_.castArray(null);
// => []
var array = [1, 2, 3];
// => true
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.
0.1.0
value
(*): The value to clone.
(*): Returns the cloned value.
var objects = [{ 'a': 1 }, { 'b': 2 }];
var shallow = _.clone(objects);
// => true
This method is like _.clone
except that it recursively clones value
.
1.0.0
value
(*): The value to recursively clone.
(*): Returns the deep cloned value.
var objects = [{ 'a': 1 }, { 'b': 2 }];
var deep = _.cloneDeep(objects);
// => false
This method is like _.cloneWith
except that it recursively clones value
.
4.0.0
customizer
(Function): The function to customize cloning.value
(*): The value to recursively clone.
(*): Returns the deep cloned value.
function customizer(value) {
if (_.isElement(value)) {
return value.cloneNode(true);
}
}
var el = _.cloneDeepWith(customizer, document.body);
// => false
// => 'BODY'
// => 20
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]).
4.0.0
customizer
(Function): The function to customize cloning.value
(*): The value to clone.
(*): Returns the cloned value.
function customizer(value) {
if (_.isElement(value)) {
return value.cloneNode(false);
}
}
var el = _.cloneWith(customizer, document.body);
// => false
// => 'BODY'
// => 0
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.
4.14.0
source
(Object): The object of property predicates to conform to.object
(Object): The object to inspect.
(boolean): Returns true
if object
conforms, else false
.
var object = { 'a': 1, 'b': 2 };
_.conformsTo({ 'b': function(n) { return n > 1; } }, object);
// => true
_.conformsTo({ 'b': function(n) { return n > 2; } }, object);
// => false
Performs a
SameValueZero
comparison between two values to determine if they are equivalent.
4.0.0
value
(*): The value to compare.other
(*): The other value to compare.
(boolean): Returns true
if the values are equivalent, else false
.
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
Checks if value
is greater than other
.
3.9.0
value
(*): The value to compare.other
(*): The other value to compare.
(boolean): Returns true
if value
is greater than other
, else false
.
_.gt(3, 1);
// => true
_.gt(3, 3);
// => false
_.gt(1, 3);
// => false
Checks if value
is greater than or equal to other
.
3.9.0
value
(*): The value to compare.other
(*): The other value to compare.
(boolean): Returns true
if value
is greater than or equal to other
, else false
.
_.gte(3, 1);
// => true
_.gte(3, 3);
// => true
_.gte(1, 3);
// => false
Checks if value
is likely an arguments
object.
0.1.0
value
(*): The value to check.
(boolean): Returns true
if value
is an arguments
object, else false
.
_.isArguments(function() { return arguments; }());
// => true
_.isArguments([1, 2, 3]);
// => false
Checks if value
is classified as an Array
object.
0.1.0
value
(*): The value to check.
(boolean): Returns true
if value
is an array, else false
.
_.isArray([1, 2, 3]);
// => true
_.isArray(document.body.children);
// => false
_.isArray('abc');
// => false
_.isArray(_.noop);
// => false
Checks if value
is classified as an ArrayBuffer
object.
4.3.0
value
(*): The value to check.
(boolean): Returns true
if value
is an array buffer, else false
.
_.isArrayBuffer(new ArrayBuffer(2));
// => true
_.isArrayBuffer(new Array(2));
// => 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
.
4.0.0
value
(*): The value to check.
(boolean): Returns true
if value
is array-like, else false
.
_.isArrayLike([1, 2, 3]);
// => true
_.isArrayLike(document.body.children);
// => true
_.isArrayLike('abc');
// => true
_.isArrayLike(_.noop);
// => false
This method is like _.isArrayLike
except that it also checks if value
is an object.
4.0.0
value
(*): The value to check.
(boolean): Returns true
if value
is an array-like object, else false
.
_.isArrayLikeObject([1, 2, 3]);
// => true
_.isArrayLikeObject(document.body.children);
// => true
_.isArrayLikeObject('abc');
// => false
_.isArrayLikeObject(_.noop);
// => false
Checks if value
is classified as a boolean primitive or object.
0.1.0
value
(*): The value to check.
(boolean): Returns true
if value
is a boolean, else false
.
_.isBoolean(false);
// => true
_.isBoolean(null);
// => false
Checks if value
is a buffer.
4.3.0
value
(*): The value to check.
(boolean): Returns true
if value
is a buffer, else false
.
_.isBuffer(new Buffer(2));
// => true
_.isBuffer(new Uint8Array(2));
// => false
Checks if value
is classified as a Date
object.
0.1.0
value
(*): The value to check.
(boolean): Returns true
if value
is a date object, else false
.
_.isDate(new Date);
// => true
_.isDate('Mon April 23 2012');
// => false
Checks if value
is likely a DOM element.
0.1.0
value
(*): The value to check.
(boolean): Returns true
if value
is a DOM element, else false
.
_.isElement(document.body);
// => true
_.isElement('<body>');
// => 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
.
0.1.0
value
(*): The value to check.
(boolean): Returns true
if value
is empty, else false
.
_.isEmpty(null);
// => true
_.isEmpty(true);
// => true
_.isEmpty(1);
// => true
_.isEmpty([1, 2, 3]);
// => false
_.isEmpty({ 'a': 1 });
// => 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. ===
.
0.1.0
value
(*): The value to compare.other
(*): The other value to compare.
(boolean): Returns true
if the values are equivalent, else false
.
var object = { 'a': 1 };
var other = { 'a': 1 };
_.isEqual(object, other);
// => true
object === other;
// => false
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]).
4.0.0
customizer
(Function): The function to customize comparisons.value
(*): The value to compare.other
(*): The other value to compare.
(boolean): Returns true
if the values are equivalent, else false
.
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(customizer, array, other);
// => true
Checks if value
is an Error
, EvalError
, RangeError
, ReferenceError
,
SyntaxError
, TypeError
, or URIError
object.
3.0.0
value
(*): The value to check.
(boolean): Returns true
if value
is an error object, else false
.
_.isError(new Error);
// => true
_.isError(Error);
// => false
Checks if value
is a finite primitive number.
Note: This method is based on
Number.isFinite
.
0.1.0
value
(*): The value to check.
(boolean): Returns true
if value
is a finite number, else false
.