_.delay

_.delay(func, wait, [args]) source npm package Invokes func after wait milliseconds. Any additional arguments are provided to func when it's invoked. Since 0.1.0 Arguments func (Function): The function to delay. wait (number): The number of milliseconds to delay invocation. [args] (...*): The arguments to invoke func with. Returns (number): Returns the timer id. Example _.delay(function(text) {   console.log(text); }, 1000, 'later'); // => Logs 'later' after one second.

_.endsWith

_.endsWith([string=''], [target], [position=string.length]) source npm package Checks if string ends with the given target string. Since 3.0.0 Arguments [string=''] (string): The string to inspect. [target] (string): The string to search for. [position=string.length] (number): The position to search up to. Returns (boolean): Returns true if string ends with target, else false. Example _.endsWith('abc', 'c'); // => true   _.endsWith('abc', 'b'); // => false   _.endsWith('abc', 'b', 

_.flip

_.flip(func) source npm package Creates a function that invokes func with arguments reversed. Since 4.0.0 Arguments func (Function): The function to flip arguments for. Returns (Function): Returns the new flipped function. Example var flipped = _.flip(function() {   return _.toArray(arguments); });   flipped('a', 'b', 'c', 'd'); // => ['d', 'c', 'b', 'a']

_.toSafeInteger

_.toSafeInteger(value) source npm package Converts value to a safe integer. A safe integer can be compared and represented correctly. Since 4.0.0 Arguments value (*): The value to convert. Returns (number): Returns the converted integer. Example _.toSafeInteger(3.2); // => 3   _.toSafeInteger(Number.MIN_VALUE); // => 0   _.toSafeInteger(Infinity); // => 9007199254740991   _.toSafeInteger('3.2'); // => 3

_.toFinite

_.toFinite(value) source npm package Converts value to a finite number. Since 4.12.0 Arguments value (*): The value to convert. Returns (number): Returns the converted number. Example _.toFinite(3.2); // => 3.2   _.toFinite(Number.MIN_VALUE); // => 5e-324   _.toFinite(Infinity); // => 1.7976931348623157e+308   _.toFinite('3.2'); // => 3.2