MCPcopy Create free account

hub / github.com/lodash/lodash / functions

Functions2,270 in github.com/lodash/lodash

FunctionmapValues
* Creates an object with the same keys as `object` and values generated * by running each own enumerable string keyed property of `object` thru
npm-package/lodash.js:13422
Functionmapper
(accumulator, index)
test/test.js:24099
Functionmatches
* Creates a function that performs a partial deep comparison between a given * object and `source`, returning `true` if the given object has equi
lodash.js:15594
Functionmatches
* Creates a function that performs a partial deep comparison between a given * object and `source`, returning `true` if the given object has equiva
npm-package/core.js:3522
Functionmatches
* Creates a function that performs a partial deep comparison between a given * object and `source`, returning `true` if the given object has equi
npm-package/lodash.js:15594
Functionmatches
* Creates a function that performs a partial deep comparison between a given * object and `source`, returning `true` if the given object has equivale
npm-package/matches.js:35
FunctionmatchesProperty
* Creates a function that performs a partial deep comparison between the * value at `path` of a given object to `srcValue`, returning `true` if t
lodash.js:15631
FunctionmatchesProperty
* Creates a function that performs a partial deep comparison between the * value at `path` of a given object to `srcValue`, returning `true` if the
npm-package/matchesProperty.js:33
FunctionmatchesProperty
* Creates a function that performs a partial deep comparison between the * value at `path` of a given object to `srcValue`, returning `true` if t
npm-package/lodash.js:15631
FunctionmatchesStrictComparable
* A specialized version of `matchesProperty` for source values suitable * for strict equality comparisons, i.e. `===`. * * @private * @param {stri
npm-package/_matchesStrictComparable.js:10
Functionmax
* Computes the maximum value of `array`. If `array` is empty or falsey, * `undefined` is returned. * * @static * @since 0.1.0
lodash.js:16328
Functionmax
* Computes the maximum value of `array`. If `array` is empty or falsey, * `undefined` is returned. * * @static * @since 0.1.0 * @member
npm-package/core.js:3676
Functionmax
* Computes the maximum value of `array`. If `array` is empty or falsey, * `undefined` is returned. * * @static * @since 0.1.0
npm-package/lodash.js:16328
Functionmax
* Computes the maximum value of `array`. If `array` is empty or falsey, * `undefined` is returned. * * @static * @since 0.1.0 * @memberOf _ * @c
npm-package/max.js:23
FunctionmaxBy
* This method is like `_.max` except that it accepts `iteratee` which is * invoked for each element in `array` to generate the criterion by which
lodash.js:16357
FunctionmaxBy
* This method is like `_.max` except that it accepts `iteratee` which is * invoked for each element in `array` to generate the criterion by which *
npm-package/maxBy.js:28
FunctionmaxBy
* This method is like `_.max` except that it accepts `iteratee` which is * invoked for each element in `array` to generate the criterion by which
npm-package/lodash.js:16357
Functionme
(n,t)
npm-package/lodash.min.js:35
Functionmean
* Computes the mean of the values in `array`. * * @static * @memberOf _ * @since 4.0.0 * @category Math * @param {Array}
lodash.js:16377
Functionmean
* Computes the mean of the values in `array`. * * @static * @memberOf _ * @since 4.0.0 * @category Math * @param {Array} array The array to iter
npm-package/mean.js:18
Functionmean
* Computes the mean of the values in `array`. * * @static * @memberOf _ * @since 4.0.0 * @category Math * @param {Array}
npm-package/lodash.js:16377
FunctionmeanBy
* This method is like `_.mean` except that it accepts `iteratee` which is * invoked for each element in `array` to generate the value to be avera
lodash.js:16404
FunctionmeanBy
* This method is like `_.mean` except that it accepts `iteratee` which is * invoked for each element in `array` to generate the value to be avera
npm-package/lodash.js:16404
FunctionmeanBy
* This method is like `_.mean` except that it accepts `iteratee` which is * invoked for each element in `array` to generate the value to be averaged.
npm-package/meanBy.js:27
Functionmemoize
* Creates a function that memoizes the result of `func`. If `resolver` is * provided, it determines the cache key for storing the result based on the
npm-package/memoize.js:50
FunctionmemoizeCapped
* A specialized version of `_.memoize` which clears the memoized function's * cache when it exceeds `MAX_MEMOIZE_SIZE`. * * @private * @param {Fun
npm-package/_memoizeCapped.js:14
Functionmemoized
()
npm-package/memoize.js:54
Functionmemoized
()
npm-package/lodash.js:10570
FunctionmergeData
* Merges the function metadata of `source` into `data`. * * Merging metadata reduces the number of wrappers used to invoke a function. * This is po
npm-package/_mergeData.js:35
Functionmf
(n,t,r)
npm-package/lodash.min.js:84
Functionmin
* Computes the minimum value of `array`. If `array` is empty or falsey, * `undefined` is returned. * * @static * @since 0.1.0
lodash.js:16426
Functionmin
* Computes the minimum value of `array`. If `array` is empty or falsey, * `undefined` is returned. * * @static * @since 0.1.0 * @memberOf _ * @c
npm-package/min.js:23
Functionmin
* Computes the minimum value of `array`. If `array` is empty or falsey, * `undefined` is returned. * * @static * @since 0.1.0 * @member
npm-package/core.js:3700
Functionmin
* Computes the minimum value of `array`. If `array` is empty or falsey, * `undefined` is returned. * * @static * @since 0.1.0
npm-package/lodash.js:16426
Functionmin
* Creates a `minify` function with `srcPath` and `destPath` partially applied. * * @memberOf file * @param {string} srcPath The path of the file to
lib/common/file.js:47
FunctionminBy
* This method is like `_.min` except that it accepts `iteratee` which is * invoked for each element in `array` to generate the criterion by which
lodash.js:16455
FunctionminBy
* This method is like `_.min` except that it accepts `iteratee` which is * invoked for each element in `array` to generate the criterion by which
npm-package/lodash.js:16455
FunctionminBy
* This method is like `_.min` except that it accepts `iteratee` which is * invoked for each element in `array` to generate the criterion by which *
npm-package/minBy.js:28
Functionminify
* Asynchronously minifies the file at `srcPath`, writes it to `destPath`, and * invokes `callback` upon completion. The callback is invoked with one
lib/common/minify.js:24
Functionmixin
* Adds all own enumerable string keyed function properties of a source * object to the destination object. If `object` is a function, then methods *
npm-package/mixin.js:45
Functionmr
(n)
npm-package/lodash.min.js:28
Functionmu
(n)
npm-package/lodash.min.js:48
FunctionnativeKeysIn
* This function is like * [`Object.keys`](http://ecma-international.org/ecma-262/7.0/#sec-object.keys) * except that it includes inherited enumerabl
npm-package/_nativeKeysIn.js:10
Functionne
(n,t)
npm-package/lodash.min.js:34
Functionnegate
* Creates a function that negates the result of the predicate `func`. The * `func` predicate is invoked with the `this` binding and arguments of the
npm-package/negate.js:24
Functionnegative
(string)
test/test.js:23555
Functionnf
()
npm-package/lodash.min.js:81
Functionnl
(n,t)
npm-package/lodash.min.js:109
FunctionnoConflict
* Reverts the `_` variable to its previous value and returns a reference to * the `lodash` function. * * @static * @since 0.1.0
lodash.js:15779
FunctionnoConflict
* Reverts the `_` variable to its previous value and returns a reference to * the `lodash` function. * * @static * @since 0.1.0 * @memb
npm-package/core.js:3611
FunctionnoConflict
* Reverts the `_` variable to its previous value and returns a reference to * the `lodash` function. * * @static * @since 0.1.0
npm-package/lodash.js:15779
Functionnoop
* This method returns `undefined`. * * @static * @memberOf _ * @since 2.3.0 * @category Util * @example * * _.
lodash.js:15798
Functionnoop
* This method returns `undefined`. * * @static * @memberOf _ * @since 2.3.0 * @category Util * @example * * _.times(2, _.noop); * // => [unde
npm-package/noop.js:13
Functionnoop
* This method returns `undefined`. * * @static * @memberOf _ * @since 2.3.0 * @category Util * @example * * _.times(2, _.noop)
npm-package/core.js:3630
Functionnoop
* This method returns `undefined`. * * @static * @memberOf _ * @since 2.3.0 * @category Util * @example * * _.
npm-package/lodash.js:15798
Functionnoop
()
test/test.js:58
Functionnoop
()
perf/perf.js:18
Functionnr
(n)
npm-package/lodash.min.js:25
Functionnth
* Gets the element at index `n` of `array`. If `n` is negative, the nth * element from the end is returned. * * @static * @memberO
lodash.js:7693
Functionnth
* Gets the element at index `n` of `array`. If `n` is negative, the nth * element from the end is returned. * * @static * @memberO
npm-package/lodash.js:7693
Functionnth
* Gets the element at index `n` of `array`. If `n` is negative, the nth * element from the end is returned. * * @static * @memberOf _ * @since 4.
npm-package/nth.js:25
FunctionnthArg
* Creates a function that gets the argument at index `n`. If `n` is negative, * the nth argument from the end is returned. * * @static
npm-package/lodash.js:15822
Functionobject
()
npm-package/_baseCreate.js:15
FunctionobjectToString
* Converts `value` to a string using `Object.prototype.toString`. * * @private * @param {*} value The value to convert. * @returns {string} Return
npm-package/_objectToString.js:18
Functionof
()
npm-package/lodash.min.js:83
FunctionomitBy
* The opposite of `_.pickBy`; this method creates an object composed of * the own and inherited enumerable string keyed properties of `object` th
lodash.js:13564
FunctionomitBy
* The opposite of `_.pickBy`; this method creates an object composed of * the own and inherited enumerable string keyed properties of `object` th
npm-package/lodash.js:13564
FunctionomitBy
* The opposite of `_.pickBy`; this method creates an object composed of * the own and inherited enumerable string keyed properties of `object` that
npm-package/omitBy.js:25
FunctiononGenericRestart
* The `Job#remove` and `Tunnel#stop` callback used by `Jobs#restart` * and `Tunnel#restart` respectively. * * @private
test/saucelabs.js:308
FunctiononGenericStop
* The `request.put` and `SauceTunnel#stop` callback used by `Jobs#stop` * and `Tunnel#stop` respectively. * * @private * @param {Object} [error] T
test/saucelabs.js:321
FunctiononJobRemove
* The `request.del` callback used by `Jobs#remove`. * * @private
test/saucelabs.js:331
FunctiononJobReset
* The `Job#remove` callback used by `Jobs#reset`. * * @private
test/saucelabs.js:342
FunctiononJobStart
* The `request.post` callback used by `Jobs#start`. * * @private * @param {Object} [error] The error object. * @param {Object} res The response da
test/saucelabs.js:357
FunctiononJobStatus
* The `request.post` callback used by `Job#status`. * * @private * @param {Object} [error] The error object. * @param {Object} res The response da
test/saucelabs.js:399
FunctiononTunnelStart
* The `SauceTunnel#start` callback used by `Tunnel#start`. * * @private * @param {boolean} success The connection success indicator.
test/saucelabs.js:480
Functiononce
* Creates a function that is restricted to invoking `func` once. Repeat calls * to the function return the value of the first invocation. The `func`
npm-package/once.js:21
Functiononce
* Creates a function that is restricted to invoking `func` once. Repeat calls * to the function return the value of the first invocation. The `func
npm-package/core.js:2380
Functiononce
* Creates a function that is restricted to invoking `func` once. Repeat calls * to the function return the value of the first invocation. The `fu
npm-package/lodash.js:10643
Functionoo
(n,t,r)
npm-package/lodash.min.js:75
Functionor
(n)
npm-package/lodash.min.js:26
FunctionorderBy
* This method is like `_.sortBy` except that it allows specifying the sort * orders of the iteratees to sort by. If `orders` is unspecified, all
lodash.js:9612
FunctionorderBy
* This method is like `_.sortBy` except that it allows specifying the sort * orders of the iteratees to sort by. If `orders` is unspecified, all valu
npm-package/orderBy.js:33
FunctionorderBy
* This method is like `_.sortBy` except that it allows specifying the sort * orders of the iteratees to sort by. If `orders` is unspecified, all
npm-package/lodash.js:9612
Functionou
(n)
npm-package/lodash.min.js:44
FunctionoverArg
* Creates a unary function that invokes `func` with its argument transformed. * * @private * @param {Function} func The function to wrap. * @param
npm-package/_overArg.js:9
FunctionoverRest
* A specialized version of `baseRest` which transforms the rest array. * * @private * @param {Function} func The function to apply a rest parameter
npm-package/_overRest.js:15
Functionpa
(n,t,r)
npm-package/lodash.min.js:101
Functionpad
* Pads `string` on the left and right sides if it's shorter than `length`. * Padding characters are truncated if they can't be evenly divided by
lodash.js:14397
Functionpad
* Pads `string` on the left and right sides if it's shorter than `length`. * Padding characters are truncated if they can't be evenly divided by `len
npm-package/pad.js:33
Functionpad
* Pads `string` on the left and right sides if it's shorter than `length`. * Padding characters are truncated if they can't be evenly divided by
npm-package/lodash.js:14397
Functionpad
(string)
test/test.js:23559
FunctionpadEnd
* Pads `string` on the right side if it's shorter than `length`. Padding * characters are truncated if they exceed `length`. * * @stati
lodash.js:14436
FunctionpadEnd
* Pads `string` on the right side if it's shorter than `length`. Padding * characters are truncated if they exceed `length`. * * @static * @member
npm-package/padEnd.js:29
FunctionpadEnd
* Pads `string` on the right side if it's shorter than `length`. Padding * characters are truncated if they exceed `length`. * * @stati
npm-package/lodash.js:14436
FunctionpadStart
* Pads `string` on the left side if it's shorter than `length`. Padding * characters are truncated if they exceed `length`. * * @static
lodash.js:14469
FunctionpadStart
* Pads `string` on the left side if it's shorter than `length`. Padding * characters are truncated if they exceed `length`. * * @static
npm-package/lodash.js:14469
FunctionpadStart
* Pads `string` on the left side if it's shorter than `length`. Padding * characters are truncated if they exceed `length`. * * @static * @memberO
npm-package/padStart.js:29
Functionparent
* Gets the parent value at `path` of `object`. * * @private * @param {Object} object The object to query. * @param {Array} path The path to get th
npm-package/_parent.js:12
FunctionparseInt
* Converts `string` to an integer of the specified radix. If `radix` is * `undefined` or `0`, a `radix` of `10` is used unless `value` is a
lodash.js:14503
FunctionparseInt
* Converts `string` to an integer of the specified radix. If `radix` is * `undefined` or `0`, a `radix` of `10` is used unless `value` is a * hexade
npm-package/parseInt.js:34
← previousnext →1,801–1,900 of 2,270, ranked by callers