Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/lodash/lodash
/ functions
Functions
2,270 in github.com/lodash/lodash
⨍
Functions
2,270
◇
Types & classes
0
↓ 1 callers
Function
nthArg
* Creates a function that gets the argument at index `n`. If `n` is negative, * the nth argument from the end is returned. * * @static * @memberOf
npm-package/nthArg.js:25
↓ 1 callers
Function
nu
(n,t,r,e)
npm-package/lodash.min.js:43
↓ 1 callers
Function
o
(n)
npm-package/core.min.js:6
↓ 1 callers
Function
oa
(n)
npm-package/lodash.min.js:100
↓ 1 callers
Function
object
()
lodash.js:1669
↓ 1 callers
Function
object
()
npm-package/lodash.js:1669
↓ 1 callers
Function
objectToString
* Converts `value` to a string using `Object.prototype.toString`. * * @private * @param {*} value The value to convert. * @returns
lodash.js:6555
↓ 1 callers
Function
objectToString
* Converts `value` to a string using `Object.prototype.toString`. * * @private * @param {*} value The value to convert. * @returns
npm-package/lodash.js:6555
↓ 1 callers
Function
oi
(n)
npm-package/lodash.min.js:60
↓ 1 callers
Function
once
* Creates a function that is restricted to invoking `func` once. Repeat calls * to the function return the value of the first invocation. The `fu
lodash.js:10643
↓ 1 callers
Function
optionToArray
* Converts a comma separated option value into an array. * * @private * @param {string} name The name of the option to inspect. * @param {string}
test/saucelabs.js:276
↓ 1 callers
Function
overArg
* Creates a unary function that invokes `func` with its argument transformed. * * @private * @param {Function} func The function to wrap.
lodash.js:1196
↓ 1 callers
Function
overArg
* Creates a unary function that invokes `func` with its argument transformed. * * @private * @param {Function} func The function to wrap.
npm-package/lodash.js:1196
↓ 1 callers
Function
p
(n)
npm-package/lodash.min.js:11
↓ 1 callers
Function
pc
(n)
npm-package/lodash.min.js:93
↓ 1 callers
Function
pi
(n,t,r,e,u,i)
npm-package/lodash.min.js:63
↓ 1 callers
Function
pickBy
* Creates an object composed of the `object` properties `predicate` returns * truthy for. The predicate is invoked with two arguments: (value, ke
lodash.js:13607
↓ 1 callers
Function
postprocess
* Post-process `markdown` to make adjustments. * * @private * @param {string} markdown The markdown to process. * @returns {string} Returns the pr
lib/main/build-doc.js:63
↓ 1 callers
Function
property
* Creates a function that returns the value at `path` of a given object. * * @static * @memberOf _ * @since 2.4.0 * @category
lodash.js:15934
↓ 1 callers
Function
pull
(array, values)
test/test.js:18323
↓ 1 callers
Function
qi
(n)
npm-package/lodash.min.js:71
↓ 1 callers
Function
qu
(n)
npm-package/lodash.min.js:53
↓ 1 callers
Function
reduce
* Reduces `collection` to a value which is the accumulated result of running * each element in `collection` thru `iteratee`, where each successiv
lodash.js:9703
↓ 1 callers
Function
remainingWait
(time)
lodash.js:10372
↓ 1 callers
Function
remainingWait
(time)
npm-package/debounce.js:108
↓ 1 callers
Function
remainingWait
(time)
npm-package/lodash.js:10372
↓ 1 callers
Function
remove
* Removes all elements from `array` that `predicate` returns truthy for * and returns an array of the removed elements. The predicate is invoked
lodash.js:7869
↓ 1 callers
Function
removeHorizontalRules
* Removes horizontal rules from the document. * * @private * @param {Object} $ The Cheerio object.
lib/main/build-site.js:57
↓ 1 callers
Function
removeMarkyAttributes
* Removes marky-markdown specific ids and class names. * * @private * @param {Object} $ The Cheerio object.
lib/main/build-site.js:67
↓ 1 callers
Function
renameLodashId
* Renames "_" id and anchor references to "lodash". * * @private * @param {Object} $ The Cheerio object.
lib/main/build-site.js:84
↓ 1 callers
Function
reorder
* Reorder `array` according to the specified indexes where the element at * the first index is assigned as the first element, the element at
lodash.js:6611
↓ 1 callers
Function
repairMarkyHeaders
* Repairs broken marky-markdown headers. * See https://github.com/npm/marky-markdown/issues/217 for more details. * * @private * @param {Object} $
lib/main/build-site.js:96
↓ 1 callers
Function
reset
(wrapper)
test/test.js:15777
↓ 1 callers
Function
resolve
(value)
test/test-fp.js:1007
↓ 1 callers
Function
resolve
(range)
test/test.js:18643
↓ 1 callers
Function
rest
* Creates a function that invokes `func` with the `this` binding of the * created function and arguments from `start` and beyond provided as
lodash.js:10821
↓ 1 callers
Function
result
* This method is like `_.get` except that if the resolved value is a * function it's invoked with the `this` binding of its parent object and
lodash.js:13649
↓ 1 callers
Function
result
* This method is like `_.get` except that if the resolved value is a * function it's invoked with the `this` binding of its parent object and
npm-package/lodash.js:13649
↓ 1 callers
Function
ri
(n)
npm-package/lodash.min.js:59
↓ 1 callers
Function
run
* Runs all benchmark suites. * * @private (@public in the browser)
perf/perf.js:194
↓ 1 callers
Function
s
(n,t)
npm-package/core.min.js:7
↓ 1 callers
Function
setProperty
* Sets a non-enumerable property value on `object`. * * Note: This function is used to avoid a bug in older versions of V8 where * overwritin
test/test.js:474
↓ 1 callers
Function
setToPairs
* Converts `set` to its value-value pairs. * * @private * @param {Object} set The set to convert. * @returns {Array} Returns the value-val
lodash.js:1251
↓ 1 callers
Function
shortOut
* Creates a function that'll short out and invoke `identity` instead * of `func` when it's called `HOT_COUNT` or more times in `HOT_SPAN` *
lodash.js:6705
↓ 1 callers
Function
skipAssert
* Skips a given number of tests with a passing result. * * @private * @param {Object} assert The QUnit assert object. * @param {number} [c
test/test-fp.js:82
↓ 1 callers
Function
skipAssert
* Skips a given number of tests with a passing result. * * @private * @param {Object} assert The QUnit assert object. * @param {number} [c
test/test.js:495
↓ 1 callers
Function
spread
* Creates a function that invokes `func` with the `this` binding of the * create function and an array of arguments much like * [`Function#a
lodash.js:10863
↓ 1 callers
Function
square
(n)
test/test-fp.js:27
↓ 1 callers
Function
strictIndexOf
* A specialized version of `_.indexOf` which performs strict equality * comparisons of values, i.e. `===`. * * @private * @param {Array} a
lodash.js:1271
↓ 1 callers
Function
strictLastIndexOf
* A specialized version of `_.lastIndexOf` which performs strict equality * comparisons of values, i.e. `===`. * * @private * @param {Arra
lodash.js:1293
↓ 1 callers
Function
ti
(t,r,e,u)
npm-package/lodash.min.js:58
↓ 1 callers
Function
tidyHighlights
* Cleans up highlights blocks by removing extraneous class names and elements. * * @private * @param {Object} $ The Cheerio object.
lib/main/build-site.js:119
↓ 1 callers
Function
toArgs
* Converts `array` to an `arguments` object. * * @private * @param {Array} array The array to convert. * @returns {Object} Returns the con
test/test.js:509
↓ 1 callers
Function
toArray
* Converts `value` to an array. * * @static * @since 0.1.0 * @memberOf _ * @category Lang * @param {*} value The value t
lodash.js:12345
↓ 1 callers
Function
toArray
* Converts `value` to an array. * * @static * @since 0.1.0 * @memberOf _ * @category Lang * @param {*} value The value to convert.
npm-package/core.js:2965
↓ 1 callers
Function
toArray
* Converts `value` to an array. * * @static * @since 0.1.0 * @memberOf _ * @category Lang * @param {*} value The value t
npm-package/lodash.js:12345
↓ 1 callers
Function
toLength
* Converts `value` to an integer suitable for use as the length of an * array-like object. * * **Note:** This method is based on *
lodash.js:12456
↓ 1 callers
Function
toPath
* Converts `value` to a property path array. * * @static * @memberOf _ * @since 4.0.0 * @category Util * @param {*} valu
lodash.js:16195
↓ 1 callers
Function
toPath
* Converts `value` to a property path array. * * @static * @memberOf _ * @since 4.0.0 * @category Util * @param {*} valu
npm-package/lodash.js:16195
↓ 1 callers
Function
toPlainObject
* Converts `value` to a plain object flattening inherited enumerable string * keyed properties of `value` to own properties of the plain object.
lodash.js:12528
↓ 1 callers
Function
trim
* Removes leading and trailing whitespace or specified characters from `string`. * * @static * @memberOf _ * @since 3.0.0 * @
lodash.js:14979
↓ 1 callers
Function
ue
(n,t)
npm-package/lodash.min.js:34
↓ 1 callers
Function
unicodeSize
* Gets the size of a Unicode `string`. * * @private * @param {string} string The string inspect. * @returns {number} Returns the string si
lodash.js:1345
↓ 1 callers
Function
unicodeToArray
* Converts a Unicode `string` to an array. * * @private * @param {string} string The string to convert. * @returns {Array} Returns the con
lodash.js:1360
↓ 1 callers
Function
unicodeWords
* Splits a Unicode `string` into an array of its words. * * @private * @param {string} The string to inspect. * @returns {Array} Returns t
lodash.js:1371
↓ 1 callers
Function
unzip
* 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
lodash.js:8487
↓ 1 callers
Function
unzip
* 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 *
npm-package/unzip.js:29
↓ 1 callers
Function
unzip
* 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
npm-package/lodash.js:8487
↓ 1 callers
Function
unzipWith
* This method is like `_.unzip` except that it accepts `iteratee` to specify * how regrouped values should be combined. The iteratee is invoked w
lodash.js:8524
↓ 1 callers
Function
updateWrapDetails
* Updates wrapper `details` based on `bitmask` flags. * * @private * @returns {Array} details The details to modify. * @param {num
lodash.js:6810
↓ 1 callers
Function
vi
(n)
npm-package/lodash.min.js:65
↓ 1 callers
Function
w
(n,r)
npm-package/core.min.js:11
↓ 1 callers
Function
words
* Splits `string` into an array of its words. * * @static * @memberOf _ * @since 3.0.0 * @category String * @param {stri
lodash.js:15242
↓ 1 callers
Function
words
* Splits `string` into an array of its words. * * @static * @memberOf _ * @since 3.0.0 * @category String * @param {string} [string=''] The stri
npm-package/words.js:25
↓ 1 callers
Function
words
* Splits `string` into an array of its words. * * @static * @memberOf _ * @since 3.0.0 * @category String * @param {stri
npm-package/lodash.js:15242
↓ 1 callers
Function
wrap
* Creates a function that wraps `func` and applys the conversions * rules by `name`. * * @private * @param {string} name The name of the f
npm-package/fp/_baseConvert.js:468
↓ 1 callers
Function
wrap
* Creates a function that wraps `func` and applys the conversions * rules by `name`. * * @private * @param {string} name The name of the f
fp/_baseConvert.js:468
↓ 1 callers
Function
wrapImmutable
* Creates a function that wraps `func` and uses `cloner` to clone the first * argument it receives. * * @private * @param {Function} func The func
npm-package/fp/_baseConvert.js:107
↓ 1 callers
Function
wrapImmutable
* Creates a function that wraps `func` and uses `cloner` to clone the first * argument it receives. * * @private * @param {Function} func The func
fp/_baseConvert.js:107
↓ 1 callers
Function
wrapper
()
npm-package/core.js:1146
↓ 1 callers
Function
x
(n)
npm-package/lodash.min.js:12
↓ 1 callers
Function
xe
(n,t,r)
npm-package/lodash.min.js:35
↓ 1 callers
Function
xi
(n,t)
npm-package/lodash.min.js:66
↓ 1 callers
Function
y
(n,t,r,e,u,o)
npm-package/core.min.js:8
↓ 1 callers
Function
za
(n)
npm-package/lodash.min.js:107
↓ 1 callers
Function
zi
(n,t,r)
npm-package/lodash.min.js:67
↓ 1 callers
Function
zu
(n)
npm-package/lodash.min.js:49
Function
$a
(n)
npm-package/lodash.min.js:108
Function
$f
(n)
npm-package/lodash.min.js:90
Function
$o
(n)
npm-package/lodash.min.js:79
Function
Aa
(n,t)
npm-package/lodash.min.js:105
Function
Af
(n,t,r)
npm-package/lodash.min.js:85
Function
Ao
(n,t)
npm-package/lodash.min.js:77
Function
Ba
()
npm-package/lodash.min.js:108
Function
Bar
()
test/test.js:1913
Function
Bc
(n)
npm-package/lodash.min.js:96
Function
Be
(n)
npm-package/lodash.min.js:39
Function
Bf
(t,r)
npm-package/lodash.min.js:89
Function
Bo
(n)
npm-package/lodash.min.js:79
Function
Bt
(n)
npm-package/lodash.min.js:23
← previous
next →
901–1,000 of 2,270, ranked by callers