_.matches
  • References/JavaScript/Underscore/Object

matcher_.matcher(attrs) Alias: matches Returns a predicate function that will tell you if a passed

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

lastIndexOf_.lastIndexOf(array, value, [fromIndex]) Returns the index of the last occurrence of value in the array

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

isDate_.isDate(object) Returns true if object is a Date.

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

clone_.clone(object) Create a shallow-copied clone of the provided plain object. Any nested objects or arrays will

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

debounce_.debounce(function, wait, [immediate]) Creates and returns a new debounced version of the passed function which will postpone

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

isRegExp_.isRegExp(object) Returns true if object is a RegExp.

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

rest_.rest(array, [index]) Alias: tail, drop Returns the rest of the elements in an array

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

constant_.constant(value) Creates a function that returns the same value that is used as the argument of _.constant.

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

filter_.filter(list, predicate, [context]) Alias: select Looks through each value in the list

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

reject_.reject(list, predicate, [context]) Returns the values in list without the elements that the truth test (predicate)

2025-01-10 15:47:30