MCPcopy Create free account

hub / github.com/chrismccord/elixirconf_training / functions

Functions167 in github.com/chrismccord/elixirconf_training

↓ 12 callersFunctiongetNative
* Gets the native function at `key` of `object`. * * @private * @param {Object} object The object to query. * @param {string} key The key
quill.js:2330
↓ 12 callersFunctionisObjectLike
* Checks if `value` is object-like. * * @private * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is
quill.js:265
↓ 11 callersFunctionisObject
* Checks if `value` is the [language type](https://es5.github.io/#x8) of `Object`. * (e.g. arrays, functions, objects, regexes, `new Number(0)`, an
quill.js:3617
↓ 10 callersFunctiontoObject
* Converts `value` to an object if it's not one. * * @private * @param {*} value The value to process. * @returns {Object} Returns the obj
quill.js:2776
↓ 9 callersFunctionextend
(child, parent)
quill.js:6728
↓ 9 callersFunctionrestParam
* Creates a function that invokes `func` with the `this` binding of the * created function and arguments from `start` and beyond provided as an arr
quill.js:3361
↓ 8 callersFunctionarrayCopy
* Copies the values of `source` to `array`. * * @private * @param {Array} source The array to copy values from. * @param {Array} [array=[]
quill.js:593
↓ 8 callersFunctionisArrayLike
* Checks if `value` is array-like. * * @private * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is a
quill.js:2434
↓ 6 callersFunctionbindCallback
* A specialized version of `baseCallback` which only supports `this` binding * and specifying the number of arguments to provide to `func`. *
quill.js:1560
↓ 6 callersFunctionisLength
* Checks if `value` is a valid array-like length. * * **Note:** This function is based on [`ToLength`](https://people.mozilla.org/~jorendorff/es
quill.js:2524
↓ 5 callersFunctionreplaceHolders
* Replaces all `placeholder` elements in `array` with an internal placeholder * and returns an array of their indexes. * * @private * @par
quill.js:278
↓ 4 callersFunctioncreateCtorWrapper
* Creates a function that produces an instance of `Ctor` regardless of * whether it was invoked as part of a `new` expression or by `call` or `appl
quill.js:1805
↓ 4 callersFunctiondiff_main
* Find the differences between two texts. Simplifies the problem by stripping * any common prefix or suffix off the texts before diffing. * @param
quill.js:5384
↓ 4 callersFunctiongetCallback
* Gets the appropriate "callback" function. If the `_.callback` method is * customized this function returns the custom method, otherwise it return
quill.js:2239
↓ 4 callersFunctionisIndex
* Checks if `value` is a valid array-like index. * * @private * @param {*} value The value to check. * @param {number} [length=MAX_SAFE_IN
quill.js:2446
↓ 4 callersFunctionisIterateeCall
* Checks if the provided arguments are from an iteratee call. * * @private * @param {*} value The potential iteratee value argument. * @pa
quill.js:2461
↓ 4 callersFunctionisKey
* Checks if `value` is a property name and not a property path. * * @private * @param {*} value The value to check. * @param {Object} [obj
quill.js:2483
↓ 3 callersFunctionbaseClone
* The base implementation of `_.clone` without support for argument juggling * and `this` binding `customizer` functions. * * @private * @
quill.js:834
↓ 3 callersFunctionbaseGet
* The base implementation of `get` without support for string paths * and default values. * * @private * @param {Object} object The object
quill.js:1112
↓ 3 callersFunctionbaseIsEqual
* The base implementation of `_.isEqual` without support for `this` binding * `customizer` functions. * * @private * @param {*} value The
quill.js:1141
↓ 3 callersFunctionbaseToString
* Converts `value` to a string if it's not one. An empty string is returned * for `null` or `undefined` values. * * @private * @param {*}
quill.js:229
↓ 3 callersFunctioncallback
* Creates a function that invokes `func` with the `this` binding of `thisArg` * and arguments of the created function. If `func` is a property name
quill.js:4070
↓ 3 callersFunctiondiff_commonPrefix
* Determine the common prefix of two strings. * @param {string} text1 First string. * @param {string} text2 Second string. * @return {number} The n
quill.js:5627
↓ 3 callersFunctiondiff_commonSuffix
* Determine the common suffix of two strings. * @param {string} text1 First string. * @param {string} text2 Second string. * @return {number} The n
quill.js:5658
↓ 3 callersFunctionindexOf
* Gets the index at which the first occurrence of `value` is found in `array` * using [`SameValueZero`](https://people.mozilla.org/~jorendorff/es6-
quill.js:2850
↓ 3 callersFunctionisArguments
* Checks if `value` is classified as an `arguments` object. * * @static * @memberOf _ * @category Lang * @param {*} value The value to
quill.js:3473
↓ 3 callersFunctiontoPath
* Converts `value` to property path array if it's not one. * * @private * @param {*} value The value to process. * @returns {Array} Return
quill.js:2787
↓ 2 callersFunctionbaseAssign
* The base implementation of `_.assign` without support for argument juggling, * multiple sources, and `customizer` functions. * * @private
quill.js:764
↓ 2 callersFunctionbaseDifference
* The base implementation of `_.difference` which accepts a single array * of values to exclude. * * @private * @param {Array} array The a
quill.js:933
↓ 2 callersFunctionbaseFlatten
* The base implementation of `_.flatten` with added support for restricting * flattening and specifying the start index. * * @private * @p
quill.js:1035
↓ 2 callersFunctionbaseForIn
* The base implementation of `_.forIn` without support for callback * shorthands and `this` binding. * * @private * @param {Object} object
quill.js:1085
↓ 2 callersFunctionbaseIsFunction
* The base implementation of `_.isFunction` without support for environments * with incorrect `typeof` results. * * @private * @param {*}
quill.js:215
↓ 2 callersFunctionbaseMatches
* The base implementation of `_.matches` which does not clone `source`. * * @private * @param {Object} source The object of property values t
quill.js:1303
↓ 2 callersFunctionbaseProperty
* The base implementation of `_.property` without support for deep paths. * * @private * @param {string} key The key of the property to get.
quill.js:1362
↓ 2 callersFunctionbaseSlice
* The base implementation of `_.slice` without an iteratee call guard. * * @private * @param {Array} array The array to slice. * @param {n
quill.js:1428
↓ 2 callersFunctionbind
(fn, me)
quill.js:7625
↓ 2 callersFunctionbufferClone
* Creates a clone of the given array buffer. * * @private * @param {ArrayBuffer} buffer The array buffer to clone. * @returns {ArrayBuffer
quill.js:1593
↓ 2 callersFunctioncacheIndexOf
* Checks if `value` is in `cache` mimicking the return signature of * `_.indexOf` by returning `0` if the value is found, else `-1`. * * @pri
quill.js:559
↓ 2 callersFunctioncomposeArgs
* Creates an array that is the composition of partially applied arguments, * placeholders, and provided arguments into a single array of arguments.
quill.js:1626
↓ 2 callersFunctioncomposeArgsRight
* This function is like `composeArgs` except that the arguments composition * is tailored for `_.partialRight`. * * @private * @param {Arr
quill.js:1656
↓ 2 callersFunctionconstant
* Creates a function that returns `value`. * * @static * @memberOf _ * @category Utility * @param {*} value The value to return from th
quill.js:4095
↓ 2 callersFunctioncreateWrapper
* Creates a function that either curries or invokes `func` with optional * `this` binding and partially applied arguments. * * @private *
quill.js:2045
↓ 2 callersFunctiondiff_bisectSplit_
* Given the location of the 'middle snake', split the diff in two parts * and recurse. * @param {string} text1 Old string to be diffed. * @param {s
quill.js:5606
↓ 2 callersFunctiondiff_halfMatchI_
* Does a substring of shorttext exist within longtext such that the substring * is at least half the length of longtext? * Closure, but does not
quill.js:5713
↓ 2 callersFunctiongetIndexOf
* Gets the appropriate "indexOf" function. If the `_.indexOf` method is * customized this function returns the custom method, otherwise it returns
quill.js:2287
↓ 2 callersFunctionisStrictComparable
* Checks if `value` is suitable for strict equality comparisons, i.e. `===`. * * @private * @param {*} value The value to check. * @return
quill.js:2536
↓ 2 callersFunctionisTypedArray
* Checks if `value` is classified as a typed array. * * @static * @memberOf _ * @category Lang * @param {*} value The value to check.
quill.js:3754
↓ 2 callersFunctionkeysIn
* Creates an array of the own and inherited enumerable property names of `object`. * * **Note:** Non-object values are coerced to objects. *
quill.js:3883
↓ 2 callersFunctionlast
* Gets the last element of `array`. * * @static * @memberOf _ * @category Array * @param {Array} array The array to query. * @return
quill.js:2933
↓ 1 callersFunctionarrayEach
* A specialized version of `_.forEach` for arrays without support for callback * shorthands and `this` binding. * * @private * @param {Arr
quill.js:613
↓ 1 callersFunctionarrayMap
* A specialized version of `_.map` for arrays without support for callback * shorthands and `this` binding. * * @private * @param {Array}
quill.js:656
↓ 1 callersFunctionarraySome
* A specialized version of `_.some` for arrays without support for callback * shorthands and `this` binding. * * @private * @param {Array}
quill.js:702
↓ 1 callersFunctionassignWith
* A specialized version of `_.assign` for customizing assigned values without * support for argument juggling, multiple sources, and `this` binding
quill.js:737
↓ 1 callersFunctionbaseCallback
* The base implementation of `_.callback` which supports specifying the * number of arguments to provide to `func`. * * @private * @param
quill.js:802
↓ 1 callersFunctionbaseCopy
* Copies properties of `source` to `object`. * * @private * @param {Object} source The object to copy properties from. * @param {Array} pr
quill.js:779
↓ 1 callersFunctionbaseDelay
* The base implementation of `_.delay` and `_.defer` which accepts an index * of where to slice the arguments to provide to `func`. * * @priv
quill.js:917
↓ 1 callersFunctionbaseFind
* The base implementation of `_.find`, `_.findLast`, `_.findKey`, and `_.findLastKey`, * without support for callback shorthands and `this` binding
quill.js:1014
↓ 1 callersFunctionbaseFindIndex
* The base implementation of `_.findIndex` and `_.findLastIndex` without * support for callback shorthands and `this` binding. * * @private
quill.js:171
↓ 1 callersFunctionbaseIndexOf
* The base implementation of `_.indexOf` without support for binary searches. * * @private * @param {Array} array The array to search. * @
quill.js:192
↓ 1 callersFunctionbaseIsEqualDeep
* A specialized version of `baseIsEqual` for arrays and objects which performs * deep comparisons and tracks traversed objects enabling objects wit
quill.js:1166
↓ 1 callersFunctionbaseIsMatch
* The base implementation of `_.isMatch` without support for callback * shorthands and `this` binding. * * @private * @param {Object} obje
quill.js:1239
↓ 1 callersFunctionbaseMatchesProperty
* The base implementation of `_.matchesProperty` which does not clone `srcValue`. * * @private * @param {string} path The path of the propert
quill.js:1329
↓ 1 callersFunctionbasePropertyDeep
* A specialized version of `baseProperty` which supports deep paths. * * @private * @param {Array|string} path The path of the property to ge
quill.js:1375
↓ 1 callersFunctionbaseReduce
* The base implementation of `_.reduce` and `_.reduceRight` without support * for callback shorthands and `this` binding, which iterates over `coll
quill.js:1397
↓ 1 callersFunctionbaseValues
* The base implementation of `_.values` and `_.valuesIn` which creates an * array of `object` property values corresponding to the property names
quill.js:1460
↓ 1 callersFunctionbinaryIndex
* Performs a binary search of `array` to determine the index at which `value` * should be inserted into `array` in order to maintain its sort order
quill.js:1482
↓ 1 callersFunctionbinaryIndexBy
* This function is like `binaryIndex` except that it invokes `iteratee` for * `value` and each element of `array` to compute their sort ranking. Th
quill.js:1515
↓ 1 callersFunctioncreateAssigner
* Creates a function that assigns properties of source object(s) to a given * destination object. * * **Note:** This function is used to crea
quill.js:1688
↓ 1 callersFunctioncreateBaseEach
* Creates a `baseEach` or `baseEachRight` function. * * @private * @param {Function} eachFunc The function to iterate over a collection. *
quill.js:1725
↓ 1 callersFunctioncreateBaseFor
* Creates a base function for `_.forIn` or `_.forInRight`. * * @private * @param {boolean} [fromRight] Specify iterating from right to left.
quill.js:1750
↓ 1 callersFunctioncreateBindWrapper
* Creates a function that wraps `func` and invokes it with the `this` * binding of `thisArg`. * * @private * @param {Function} func The fu
quill.js:1776
↓ 1 callersFunctioncreateFind
* Creates a `_.find` or `_.findLast` function. * * @private * @param {Function} eachFunc The function to iterate over a collection. * @par
quill.js:1836
↓ 1 callersFunctioncreateForEach
* Creates a function for `_.forEach` or `_.forEachRight`. * * @private * @param {Function} arrayFunc The function to iterate over an array.
quill.js:1855
↓ 1 callersFunctioncreatePartial
* Creates a `_.partial` or `_.partialRight` function. * * @private * @param {boolean} flag The partial bit flag. * @returns {Function} Ret
quill.js:1870
↓ 1 callersFunctioncreateReduce
* Creates a function for `_.reduce` or `_.reduceRight`. * * @private * @param {Function} arrayFunc The function to iterate over an array.
quill.js:1886
↓ 1 callersFunctiondiff_bisect_
* Find the 'middle snake' of a diff, split the problem in two * and return the recursively constructed diff. * See Myers 1986 paper: An O(ND) Differ
quill.js:5490
↓ 1 callersFunctiondiff_cleanupMerge
* Reorder and merge like edit sections. Merge equalities. * Any edit section can move as long as it doesn't cross an equality. * @param {Array} dif
quill.js:5782
↓ 1 callersFunctiondiff_compute_
* Find the differences between two texts. Assumes that the texts do not * have any common prefix or suffix. * @param {string} text1 Old string to b
quill.js:5427
↓ 1 callersFunctiondiff_halfMatch_
* Do the two texts share a substring which is at least half the length of the * longer text? * This speedup can produce non-minimal diffs. * @param
quill.js:5694
↓ 1 callersFunctionequalByTag
* A specialized version of `baseIsEqualDeep` for comparing objects of * the same `toStringTag`. * * **Note:** This function only supports com
quill.js:2146
↓ 1 callersFunctionescapeRegExp
* Escapes the `RegExp` special characters "\", "/", "^", "$", ".", "|", "?", * "*", "+", "(", ")", "[", "]", "{" and "}" in `string`. * * @st
quill.js:4023
↓ 1 callersFunctiongetFuncName
* Gets the name of `func`. * * @private * @param {Function} func The function to query. * @returns {string} Returns the function name.
quill.js:2263
↓ 1 callersFunctiongetMatchData
* Gets the propery names, values, and compare flags of `object`. * * @private * @param {Object} object The object to query. * @returns {Ar
quill.js:2312
↓ 1 callersFunctionindexOfNaN
* Gets the index at which the first occurrence of `NaN` is found in `array`. * * @private * @param {Array} array The array to search. * @p
quill.js:245
↓ 1 callersFunctioninitCloneArray
* Initializes an array clone. * * @private * @param {Array} array The array to clone. * @returns {Array} Returns the initialized clone.
quill.js:2342
↓ 1 callersFunctioninitCloneByTag
* Initializes an object clone based on its `toStringTag`. * * **Note:** This function only supports cloning values with tags of * `Boolean`,
quill.js:2381
↓ 1 callersFunctioninitCloneObject
* Initializes an object clone. * * @private * @param {Object} object The object to clone. * @returns {Object} Returns the initialized clon
quill.js:2361
↓ 1 callersFunctioninvokePath
* Invokes the method at `path` on `object`. * * @private * @param {Object} object The object to query. * @param {Array|string} path The pa
quill.js:2417
↓ 1 callersFunctionisLaziable
* Checks if `func` has a lazy counterpart. * * @private * @param {Function} func The function to check. * @returns {boolean} Returns `true
quill.js:2502
↓ 1 callersFunctionisNative
* Checks if `value` is a native function. * * @static * @memberOf _ * @category Lang * @param {*} value The value to check. * @retur
quill.js:3640
↓ 1 callersFunctionmatches
* Creates a function that performs a deep comparison between a given object * and `source`, returning `true` if the given object has equivalent pro
quill.js:4145
↓ 1 callersFunctionmergeData
* Merges the function metadata of `source` into `data`. * * Merging metadata reduces the number of wrappers required to invoke a function. *
quill.js:2555
↓ 1 callersFunctionpairs
* Creates a two dimensional array of the key-value pairs for `object`, * e.g. `[[key1, value1], [key2, value2]]`. * * @static * @memberOf
quill.js:3963
↓ 1 callersFunctionpickByArray
* A specialized version of `_.pick` which picks `object` properties specified * by `props`. * * @private * @param {Object} object The sour
quill.js:2619
↓ 1 callersFunctionpickByCallback
* A specialized version of `_.pick` which picks `object` properties `predicate` * returns truthy for. * * @private * @param {Object} objec
quill.js:2644
↓ 1 callersFunctionproperty
* Creates a function that returns the property value at `path` on a * given object. * * @static * @memberOf _ * @category Utility *
quill.js:4189
↓ 1 callersFunctionreorder
* Reorder `array` according to the specified indexes where the element at * the first index is assigned as the first element, the element at * t
quill.js:2664
↓ 1 callersFunctions
(o,u)
quill.js:6
↓ 1 callersFunctionshimIsPlainObject
* A fallback implementation of `_.isPlainObject` which checks if `value` * is an object created by the `Object` constructor or has a `[[Prototype]]
quill.js:2718
↓ 1 callersFunctionshimKeys
* A fallback implementation of `Object.keys` which creates an array of the * own enumerable property names of `object`. * * @private * @pa
quill.js:2749
next →1–100 of 167, ranked by callers