Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/bendytree/explainjs
/ functions
Functions
143 in github.com/bendytree/explainjs
⨍
Functions
143
◇
Types & classes
0
Function
lodashWrapper
* A fast path for creating `lodash` wrapper objects. * * @private * @param {Mixed} value The value to wrap in a `lodash` instance.
samples/lodash.js:514
Function
memoize
* Creates a function that memoizes the result of `func`. If `resolver` is * passed, it will be used to determine the cache key for storing the re
samples/lodash.js:4310
Function
merge
* Recursively merges own enumerable properties of the source object(s), that * don't resolve to `undefined`, into the destination object. Subsequ
samples/lodash.js:1743
Function
min
* Retrieves the minimum value of an `array`. If `callback` is passed, * it will be executed for each value in the `array` to generate the *
samples/lodash.js:2579
Function
noConflict
* Reverts the '_' variable to its previous value and returns a reference to * the `lodash` function. * * @static * @memberOf _
samples/lodash.js:4593
Function
noop
* A no-operation function. * * @private
samples/lodash.js:525
Function
omit
* Creates a shallow clone of `object` excluding the specified properties. * Property names may be specified as individual arguments or as arrays
samples/lodash.js:1852
Function
once
* Creates a function that is restricted to execute `func` once. Repeat calls to * the function will return the value of the first call. The `func
samples/lodash.js:4337
Function
pairs
* Creates a two dimensional array of the given object's key-value pairs, * i.e. `[[key1, value1], [key2, value2]]`. * * @static *
samples/lodash.js:1886
Function
partial
* Creates a function that, when called, invokes `func` with any additional * `partial` arguments prepended to those passed to the new function. T
samples/lodash.js:4372
Function
partialRight
* This method is similar to `_.partial`, except that `partial` arguments are * appended to those passed to the new function. * * @stati
samples/lodash.js:4403
Function
pick
* Creates a shallow clone of `object` composed of the specified properties. * Property names may be specified as individual arguments or as array
samples/lodash.js:1924
Function
random
* Produces a random number between `min` and `max` (inclusive). If only one * argument is passed, a number between `0` and the given number will
samples/lodash.js:4637
Function
range
* Creates an array of numbers (positive and/or negative) progressing from * `start` up to but not including `end`. * * @static * @
samples/lodash.js:3547
Function
reduce
* Reduces a `collection` to a value which is the accumulated result of running * each element in the `collection` through the `callback`, where e
samples/lodash.js:2672
Function
reduceRight
* This method is similar to `_.reduce`, except that it iterates over a * `collection` from right to left. * * @static * @memberOf
samples/lodash.js:2716
Function
reject
* The opposite of `_.filter`, this method returns the elements of a * `collection` that `callback` does **not** return truthy for. * *
samples/lodash.js:2774
Function
rest
* The opposite of `_.initial`, this method gets all but the first value of * `array`. If a number `n` is passed, the first `n` values are exclude
samples/lodash.js:3626
Function
setFilters
()
samples/sizzle.js:1883
Function
shimKeys
(object)
samples/lodash.js:630
Function
shuffle
* Creates an array of shuffled `array` values, using a version of the * Fisher-Yates shuffle. See http://en.wikipedia.org/wiki/Fisher-Yates_shuff
samples/lodash.js:2795
Function
size
* Gets the size of the `collection` by returning `collection.length` for arrays * and array-like objects or the number of own enumerable properti
samples/lodash.js:2828
Function
some
* Checks if the `callback` returns a truthy value for **any** element of a * `collection`. The function returns as soon as it finds passing value
samples/lodash.js:2875
Function
sortBy
* Creates an array of elements, sorted in ascending order by the results of * running each element in the `collection` through the `callback`. Th
samples/lodash.js:2931
Function
sortOrder
()
samples/sizzle.js:42
Function
superMatcher
( seed, context, xml, results, expandContext )
samples/sizzle.js:1682
Function
tap
* Invokes `interceptor` with the `value` as the first argument, and then * returns `value`. The purpose of this method is to "tap into" a method
samples/lodash.js:4960
Function
template
* A micro-templating method that handles arbitrary delimiters, preserves * whitespace, and correctly escapes quotes within interpolated code.
samples/lodash.js:4760
Function
throttle
* Creates a function that, when executed, will only call the `func` function * at most once per every `wait` milliseconds. If the throttled funct
samples/lodash.js:4430
Function
times
* Executes the `callback` function `n` times, returning an array of the results * of each `callback` execution. The `callback` is bound to `thisA
samples/lodash.js:4885
Function
toArray
* Converts the `collection` to an array. * * @static * @memberOf _ * @category Collections * @param {Array|Object|String} col
samples/lodash.js:2966
Function
trailingCall
()
samples/lodash.js:4439
Function
unescape
* The inverse of `_.escape`, this method converts the HTML entities * `&`, `<`, `>`, `"`, and `'` in `string` to their *
samples/lodash.js:4912
Function
unescapeHtmlChar
* Used by `unescape` to convert HTML entities to characters. * * @private * @param {String} match The matched character to unescape.
samples/lodash.js:595
Function
union
* Computes the union of the passed-in arrays using strict equality for * comparisons, i.e. `===`. * * @static * @memberOf _ *
samples/lodash.js:3722
Function
uniqueId
* Generates a unique ID. If `prefix` is passed, the ID will be appended to it. * * @static * @memberOf _ * @category Utilities
samples/lodash.js:4932
Function
unzip
* The inverse of `_.zip`, this method splits groups of elements into arrays * composed of elements from each group at their corresponding indexes
samples/lodash.js:3830
Function
without
* Creates an array with all occurrences of the passed values removed using * strict equality for comparisons, i.e. `===`. * * @static
samples/lodash.js:3862
Function
wrap
* Creates a function that passes `value` to the `wrapper` function as its * first argument. Additional arguments passed to the function are appen
samples/lodash.js:4496
Function
wrapperToString
* Produces the `toString` result of the wrapped value. * * @name toString * @memberOf _ * @category Chaining * @returns {Stri
samples/lodash.js:4977
Function
wrapperValueOf
* Extracts the wrapped value. * * @name valueOf * @memberOf _ * @alias value * @category Chaining * @returns {Mixed} Ret
samples/lodash.js:4994
Function
zip
* Groups the elements of each array at their corresponding indexes. Useful for * separate data sources that are coordinated through matching arra
samples/lodash.js:3882
Function
zipObject
* Creates an object composed from arrays of `keys` and `values`. Pass either * a single two dimensional array, i.e. `[[key1, value1], [key2, valu
samples/lodash.js:3911
← previous
101–143 of 143, ranked by callers