_.isDate
  • References/JavaScript/Underscore/Object

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

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
_.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
_.escape
  • References/JavaScript/Underscore/Utility

escape_.escape(string) Escapes a string for insertion into HTML, replacing &, <, >, "

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

findKey_.findKey(object, predicate, [context]) Similar to _

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

create_.create(prototype, props) Creates a new object with the given prototype, optionally attaching props as own properties

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

tap_.tap(object, interceptor) Invokes interceptor with the object, and then returns object. The primary purpose

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

isObject_.isObject(value) Returns true if value is an Object. Note that JavaScript arrays and functions are objects

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

partial_.partial(function, *arguments) Partially apply a function by filling in any number of its arguments, without

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

mixin_.mixin(object) Allows you to extend Underscore with your own utility functions. Pass a hash of {name: function} definitions

2025-01-10 15:47:30