_.map

_.map(collection, [iteratee=_.identity]) source npm package Creates an array of values by running each element in collection thru iteratee. The iteratee is invoked with three arguments:(value, index|key, collection).Many lodash methods are guarded to work as iteratees for methods like _.every, _.filter, _.map, _.mapValues, _.reject, and _.some.The guarded methods are:ary, chunk, curry, curryRight, drop, dropRight, every, fill, invert, parseInt, random, range, rangeRight, repeat, sampleSize, s

_.lte

_.lte(value, other) source npm package Checks if value is less than or equal to other. Since 3.9.0 Arguments value (*): The value to compare. other (*): The other value to compare. Returns (boolean): Returns true if value is less than or equal to other, else false. Example _.lte(1, 3); // => true   _.lte(3, 3); // => true   _.lte(3, 1); // => false

_.dropWhile

_.dropWhile(array, [predicate=_.identity]) source npm package Creates a slice of array excluding elements dropped from the beginning. Elements are dropped until predicate returns falsey. The predicate is invoked with three arguments: (value, index, array). Since 3.0.0 Arguments array (Array): The array to query. [predicate=_.identity] (Function): The function invoked per iteration. Returns (Array): Returns the slice of array. Example var users = [   { 'user': 'barney',  'active': false },

_.isBuffer

_.isBuffer(value) source npm package Checks if value is a buffer. Since 4.3.0 Arguments value (*): The value to check. Returns (boolean): Returns true if value is a buffer, else false. Example _.isBuffer(new Buffer(2)); // => true   _.isBuffer(new Uint8Array(2)); // => false

_.orderBy

_.orderBy(collection, [iteratees=[_.identity]], [orders]) source npm package This method is like _.sortBy except that it allows specifying the sort orders of the iteratees to sort by. If orders is unspecified, all values are sorted in ascending order. Otherwise, specify an order of "desc" for descending or "asc" for ascending sort order of corresponding values. Since 4.0.0 Arguments collection (Array|Object): The collection to iterate over. [iteratees=[_.identity]] (Array[]|Function[]|Objec

_.isObject

_.isObject(value) source npm package Checks if value is the language type of Object. (e.g. arrays, functions, objects, regexes, new Number(0), and new String('')) Since 0.1.0 Arguments value (*): The value to check. Returns (boolean): Returns true if value is an object, else false. Example _.isObject({}); // => true   _.isObject([1, 2, 3]); // => true   _.isObject(_.noop); // => true   _.isObject(null); // => false

_.isMap

_.isMap(value) source npm package Checks if value is classified as a Map object. Since 4.3.0 Arguments value (*): The value to check. Returns (boolean): Returns true if value is a map, else false. Example _.isMap(new Map); // => true   _.isMap(new WeakMap); // => false

_.templateSettings.interpolate

_.templateSettings.interpolate source (RegExp): Used to detect data property values to inject.

_.invoke

_.invoke(object, path, [args]) source npm package Invokes the method at path of object. Since 4.0.0 Arguments object (Object): The object to query. path (Array|string): The path of the method to invoke. [args] (...*): The arguments to invoke the method with. Returns (*): Returns the result of the invoked method. Example var object = { 'a': [{ 'b': { 'c': [1, 2, 3, 4] } }] };   _.invoke(object, 'a[0].b.c.slice', 1, 3); // => [2, 3]

_.mapKeys

_.mapKeys(object, [iteratee=_.identity]) source npm package The opposite of _.mapValues; this method creates an object with the same values as object and keys generated by running each own enumerable string keyed property of object thru iteratee. The iteratee is invoked with three arguments: (value, key, object). Since 3.8.0 Arguments object (Object): The object to iterate over. [iteratee=_.identity] (Function): The function invoked per iteration. Returns (Object): Returns the new mapped