_.includes
  • References/JavaScript/Underscore/Collection

contains_.contains(list, value, [fromIndex]) Alias: includes Returns true if the value

2025-01-10 15:47:30
_.before
  • References/JavaScript/Underscore/Function

before_.before(count, function) Creates a version of the function that can be called no more than count times. The result

2025-01-10 15:47:30
_.random
  • References/JavaScript/Underscore/Utility

random_.random(min, max) Returns a random integer between min and max, inclusive. If you only pass one argument, it

2025-01-10 15:47:30
_.union
  • References/JavaScript/Underscore/Array

union_.union(*arrays) Computes the union of the passed-in arrays: the list of unique items, in order, that are present in

2025-01-10 15:47:30
_.result
  • References/JavaScript/Underscore/Utility

result_.result(object, property, [defaultValue]) If the value of the named property is a function then invoke it with the

2025-01-10 15:47:30
_.find
  • References/JavaScript/Underscore/Collection

find_.find(list, predicate, [context]) Alias: detect Looks through each value in the list

2025-01-10 15:47:30
_.compose
  • References/JavaScript/Underscore/Function

compose_.compose(*functions) Returns the composition of a list of functions, where each function consumes the return value

2025-01-10 15:47:30
_.extend
  • References/JavaScript/Underscore/Object

extend_.extend(destination, *sources) Copy all of the properties in the source objects over to the destination

2025-01-10 15:47:30
_.pick
  • References/JavaScript/Underscore/Object

pick_.pick(object, *keys) Return a copy of the object, filtered to only have values for the whitelisted keys (or array

2025-01-10 15:47:30
_.isEmpty
  • References/JavaScript/Underscore/Object

isEmpty_.isEmpty(object) Returns true if an enumerable object contains no values (no enumerable own-properties). For

2025-01-10 15:47:30