_.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
_.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
_.partition
  • References/JavaScript/Underscore/Collection

partition_.partition(array, predicate) Split array into two arrays: one whose elements all satisfy predicate and one

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
_.pairs
  • References/JavaScript/Underscore/Object

pairs_.pairs(object) Convert an object into a list of [key, value] pairs.

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
_.isNull
  • References/JavaScript/Underscore/Object

isNull_.isNull(object) Returns true if the value of object is null.

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

isNaN_.isNaN(object) Returns true if object is NaN. Note: this is not the same as the native isNaN

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

map_.map(list, iteratee, [context]) Alias: collect Produces a new array of values by mapping each

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

each_.each(list, iteratee, [context]) Alias: forEach Iterates over a list of elements, yielding

2025-01-10 15:47:30