_.throttle
  • References/JavaScript/Underscore/Function

throttle_.throttle(function, wait, [options]) Creates and returns a new, throttled version of the passed function, that, when invoked

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

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

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

memoize_.memoize(function, [hashFunction]) Memoizes a given function by caching the computed result. Useful for speeding up

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

countBy_.countBy(list, iteratee, [context]) Sorts a list into groups and returns a count for the number of objects in each group

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

findWhere_.findWhere(list, properties) Looks through the list and returns the first value that matches all of the key-value

2025-01-10 15:47:30
_.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
_.size
  • References/JavaScript/Underscore/Collection

size_.size(list) Return the number of values in the list.

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
_.without
  • References/JavaScript/Underscore/Array

without_.without(array, *values) Returns a copy of the array with all instances of the values removed.

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