_.assign

_.assign(object, [sources]) source npm package Assigns own enumerable string keyed properties of source objects to the destination object. Source objects are applied from left to right. Subsequent sources overwrite property assignments of previous sources.Note: This method mutates object and is loosely based on Object.assign. Since 0.10.0 Arguments object (Object): The destination object. [sources] (...Object): The source objects. Returns (Object): Returns object. Example function Foo() {

_.ary

_.ary(func, [n=func.length]) source npm package Creates a function that invokes func, with up to n arguments, ignoring any additional arguments. Since 3.0.0 Arguments func (Function): The function to cap arguments for. [n=func.length] (number): The arity cap. Returns (Function): Returns the new capped function. Example _.map(['6', '8', '10'], _.ary(parseInt, 1)); // => [6, 8, 10]

_.after

_.after(n, func) source npm package The opposite of _.before; this method creates a function that invokes func once it's called n or more times. Since 0.1.0 Arguments n (number): The number of calls before func is invoked. func (Function): The function to restrict. Returns (Function): Returns the new restricted function. Example var saves = ['profile', 'settings'];   var done = _.after(saves.length, function() {   console.log('done saving!'); });   _.forEach(saves, function(type) {   asy

_.add

_.add(augend, addend) source npm package Adds two numbers. Since 3.4.0 Arguments augend (number): The first number in an addition. addend (number): The second number in an addition. Returns (number): Returns the total. Example _.add(6, 4); // => 10

_

_(value) source Creates a lodash object which wraps value to enable implicit method chain sequences. Methods that operate on and return arrays, collections, and functions can be chained together. Methods that retrieve a single value or may return a primitive value will automatically end the chain sequence and return the unwrapped value. Otherwise, the value must be unwrapped with _#value.Explicit chain sequences, which must be unwrapped with _#value, may be enabled using _.chain.The execution o