_.VERSION

_.VERSION source (string): The semantic version number.

_.valuesIn

_.valuesIn(object) source npm package Creates an array of the own and inherited enumerable string keyed property values of object.Note: Non-object values are coerced to objects. Since 3.0.0 Arguments object (Object): The object to query. Returns (Array): Returns the array of property values. Example function Foo() {   this.a = 1;   this.b = 2; }   Foo.prototype.c = 3;   _.valuesIn(new Foo); // => [1, 2, 3] (iteration order is not guaranteed)

_.values

_.values(object) source npm package Creates an array of the own enumerable string keyed property values of object.Note: Non-object values are coerced to objects. Since 0.1.0 Arguments object (Object): The object to query. Returns (Array): Returns the array of property values. Example function Foo() {   this.a = 1;   this.b = 2; }   Foo.prototype.c = 3;   _.values(new Foo); // => [1, 2] (iteration order is not guaranteed)   _.values('hi'); // => ['h', 'i']

_.upperFirst

_.upperFirst([string='']) source npm package Converts the first character of string to upper case. Since 4.0.0 Arguments [string=''] (string): The string to convert. Returns (string): Returns the converted string. Example _.upperFirst('fred'); // => 'Fred'   _.upperFirst('FRED'); // => 'FRED'

_.upperCase

_.upperCase([string='']) source npm package Converts string, as space separated words, to upper case. Since 4.0.0 Arguments [string=''] (string): The string to convert. Returns (string): Returns the upper cased string. Example _.upperCase('--foo-bar'); // => 'FOO BAR'   _.upperCase('fooBar'); // => 'FOO BAR'   _.upperCase('__foo_bar__'); // => 'FOO BAR'

_.updateWith

_.updateWith(object, path, updater, [customizer]) source npm package This method is like _.update except that it accepts customizer which is invoked to produce the objects of path. If customizer returns undefined path creation is handled by the method instead. The customizer is invoked with three arguments: (nsValue, key, nsObject).Note: This method mutates object. Since 4.6.0 Arguments object (Object): The object to modify. path (Array|string): The path of the property to set. updater (Fu

_.update

_.update(object, path, updater) source npm package This method is like _.set except that accepts updater to produce the value to set. Use _.updateWith to customize path creation. The updater is invoked with one argument: (value).Note: This method mutates object. Since 4.6.0 Arguments object (Object): The object to modify. path (Array|string): The path of the property to set. updater (Function): The function to produce the updated value. Returns (Object): Returns object. Example var objec

_.unzipWith

_.unzipWith(array, [iteratee=_.identity]) source npm package This method is like _.unzip except that it accepts iteratee to specify how regrouped values should be combined. The iteratee is invoked with the elements of each group: (...group). Since 3.8.0 Arguments array (Array): The array of grouped elements to process. [iteratee=_.identity] (Function): The function to combine regrouped values. Returns (Array): Returns the new array of regrouped elements. Example var zipped = _.zip([1, 2],

_.unzip

_.unzip(array) source npm package This method is like _.zip except that it accepts an array of grouped elements and creates an array regrouping the elements to their pre-zip configuration. Since 1.2.0 Arguments array (Array): The array of grouped elements to process. Returns (Array): Returns the new array of regrouped elements. Example var zipped = _.zip(['a', 'b'], [1, 2], [true, false]); // => [['a', 1, true], ['b', 2, false]]   _.unzip(zipped); // => [['a', 'b'], [1, 2], [true, fal

_.unset

_.unset(object, path) source npm package Removes the property at path of object.Note: This method mutates object. Since 4.0.0 Arguments object (Object): The object to modify. path (Array|string): The path of the property to unset. Returns (boolean): Returns true if the property is deleted, else false. Example var object = { 'a': [{ 'b': { 'c': 7 } }] }; _.unset(object, 'a[0].b.c'); // => true   console.log(object); // => { 'a': [{ 'b': {} }] };   _.unset(object, ['a', '0', 'b', 'c'