_.after
  • References/JavaScript/Underscore/Function

after_.after(count, function) Creates a version of the function that will only be run after first being called count times

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

wrap_.wrap(function, wrapper) Wraps the first function inside of the wrapper function, passing it as the first argument

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

findLastIndex_.findLastIndex(array, predicate, [context]) Like _

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

invert_.invert(object) Returns a copy of the object where the keys have become the values and the values the keys. For this

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

max_.max(list, [iteratee], [context]) Returns the maximum value in list. If an iteratee function is provided, it will

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

isArray_.isArray(object) Returns true if object is an Array.

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

now_.now() Returns an integer timestamp for the current time, using the fastest method available in the runtime. Useful for implementing

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

compact_.compact(array) Returns a copy of the array with all falsy values removed. In JavaScript, false, null

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

isError_.isError(object) Returns true if object inherits from an Error.

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

negate_.negate(predicate) Returns a new negated version of the predicate function.

2025-01-10 15:47:30