_.isFinite
  • References/JavaScript/Underscore/Object

isFinite_.isFinite(object) Returns true if object is a finite Number.

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

once_.once(function) Creates a version of the function that can only be called one time. Repeated calls to the modified function

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

omit_.omit(object, *keys) Return a copy of the object, filtered to omit the blacklisted keys (or array of keys). Alternatively

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

isElement_.isElement(object) Returns true if object is a DOM element.

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

mapObject_.mapObject(object, iteratee, [context]) Like map

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

first_.first(array, [n]) Alias: head, take Returns the first element of an array

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

times_.times(n, iteratee, [context]) Invokes the given iteratee function n times. Each invocation of iteratee is called

2025-01-10 15:47:30
_.chain
  • References/JavaScript/Underscore/Chaining

chain_.chain(obj) Returns a wrapped object. Calling methods on this object will continue to return wrapped objects until value

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

bind_.bind(function, object, *arguments) Bind a function to an object, meaning that whenever the function is called

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

delay_.delay(function, wait, *arguments) Much like setTimeout, invokes function after wait milliseconds. If

2025-01-10 15:47:30