MCPcopy Create free account

hub / github.com/dcorb/debounce-throttle / functions

Functions172 in github.com/dcorb/debounce-throttle

FunctiondefaultPrefilter
( elem, props, opts )
jquery.js:8771
Functiondefer
* Defers executing the `func` function until the current call stack has cleared. * Additional arguments will be passed to `func` when it is invoked
lodash.js:3557
Functiondelay
* Executes the `func` function after `wait` milliseconds. Additional arguments * will be passed to `func` when it is invoked. * * @static
lodash.js:3537
Functiondelayed
()
lodash.js:3498
Functiondetokenize
* Used by `template` to replace tokens with their corresponding code snippets. * * @private * @param {String} match The matched token. * @
lodash.js:781
Functiondifference
* Creates a new array of `array` elements not present in the other arrays * using strict equality for comparisons, i.e. `===`. * * @static
lodash.js:2561
FunctiondoAnimation
()
jquery.js:9003
Functionescape
* Converts the characters `&`, `<`, `>`, `"`, and `'` in `string` to their * corresponding HTML entities. * * @static * @memberOf _ * @
lodash.js:3756
FunctionescapeHtmlChar
* Used by `escape` to convert characters to HTML entities. * * @private * @param {String} match The matched character to escape. * @return
lodash.js:804
FunctionescapeStringChar
* Used by `template` to escape characters for inclusion in compiled * string literals. * * @private * @param {String} match The matched ch
lodash.js:793
FunctionfcamelCase
( all, letter )
jquery.js:75
Functionfirst
* Gets the first element of the `array`. Pass `n` to return the first `n` * elements of the `array`. * * @static * @memberOf _ * @alias
lodash.js:2598
Functionflatten
* Flattens a nested array (the nesting can be to any depth). If `shallow` is * truthy, `array` will only be flattened a single level. * * @st
lodash.js:2622
Functionhandler
( event )
jquery.js:3469
Functionhas
* Checks if the specified object `property` exists and is a direct property, * instead of an inherited property. * * @static * @memberOf _
lodash.js:1308
Functionidentity
* This function returns the first argument passed to it. * * Note: It is used throughout Lo-Dash as a default callback. * * @static * @
lodash.js:3776
Functioninitial
* Gets all but the last element of `array`. Pass `n` to exclude the last `n` * elements from the result. * * @static * @memberOf _ * @c
lodash.js:2706
Functionintersection
* Computes the intersection of all the passed-in arrays using strict equality * for comparisons, i.e. `===`. * * @static * @memberOf _
lodash.js:2728
FunctionisBoolean
* Checks if `value` is a boolean (`true` or `false`) value. * * @static * @memberOf _ * @category Objects * @param {Mixed} value The va
lodash.js:1344
FunctionisDate
* Checks if `value` is a date. * * @static * @memberOf _ * @category Objects * @param {Mixed} value The value to check. * @returns {
lodash.js:1361
FunctionisElement
* Checks if `value` is a DOM element. * * @static * @memberOf _ * @category Objects * @param {Mixed} value The value to check. * @re
lodash.js:1378
FunctionisEqual
* Performs a deep comparison between two values to determine if they are * equivalent to each other. If a value has an `isEqual` method it will be
lodash.js:1444
FunctionisNull
* Checks if `value` is `null`. * * @deprecated * @static * @memberOf _ * @category Objects * @param {Mixed} value The value to check
lodash.js:1697
FunctionisNumber
* Checks if `value` is a number. * * @static * @memberOf _ * @category Objects * @param {Mixed} value The value to check. * @returns
lodash.js:1714
FunctionisObject
* Checks if `value` is the language type of Object. * (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`) * * @
lodash.js:1640
FunctionisRegExp
* Checks if `value` is a regular expression. * * @static * @memberOf _ * @category Objects * @param {Mixed} value The value to check.
lodash.js:1731
FunctionisString
* Checks if `value` is a string. * * @static * @memberOf _ * @category Objects * @param {Mixed} value The value to check. * @returns
lodash.js:1748
FunctionisUndefined
* Checks if `value` is `undefined`. * * @deprecated * @static * @memberOf _ * @category Objects * @param {Mixed} value The value to
lodash.js:1766
Functionlast
* Gets the last element of the `array`. Pass `n` to return the lasy `n` * elementsvof the `array`. * * @static * @memberOf _ * @categor
lodash.js:2771
FunctionlastIndexOf
* Gets the index at which the last occurrence of `value` is found using * strict equality for comparisons, i.e. `===`. * * @static * @memb
lodash.js:2797
Functionlater
()
underscore.js:625
Functionlodash
* The `lodash` function. * * @name _ * @constructor * @param {Mixed} value The value to wrap in a `LoDash` instance. * @returns {Object
lodash.js:297
Functionmemoize
* Creates a new function that memoizes the result of `func`. If `resolver` is * passed, it will be used to determine the cache key for storing the
lodash.js:3580
Functionmin
* Retrieves the minimum value of an `array`. If `callback` is passed, * it will be executed for each value in the `array` to generate the * crit
lodash.js:2887
Functionnext
()
jquery.js:1874
FunctionnoConflict
* Reverts the '_' variable to its previous value and returns a reference to * the `lodash` function. * * @static * @memberOf _ * @categ
lodash.js:3833
Functionnoop
* A no-operation function. * * @private
lodash.js:828
Functionobject
* Creates an object composed from arrays of `keys` and `values`. Pass either * a single two dimensional array, i.e. `[[key1, value1], [key2, value2
lodash.js:2936
Functiononce
* Creates a new function that is restricted to one execution. Repeat calls to * the function will return the value of the first call. * * @st
lodash.js:3606
Functionpartial
* Creates a new function that, when called, invokes `func` with any additional * `partial` arguments prepended to those passed to the new function.
lodash.js:3641
Functionrandom
* Produces a random number between `min` and `max` (inclusive). If only one * argument is passed, a number between `0` and the given number will be
lodash.js:3860
Functionrange
* Creates an array of numbers (positive and/or negative) progressing from * `start` up to but not including `stop`. This method is a port of Python
lodash.js:2983
FunctionreduceRight
* The right-associative version of `_.reduce`. * * @static * @memberOf _ * @alias foldr * @category Collections * @param {Array|Obje
lodash.js:2288
Functionrest
* The opposite of `_.initial`, this method gets all but the first value of * `array`. Pass `n` to exclude the first `n` values from the result.
lodash.js:3022
Functionresult
(obj)
underscore.js:1159
FunctionreturnFalse
()
jquery.js:3279
FunctionreturnTrue
()
jquery.js:3282
FunctionsetFilters
()
jquery.js:5325
Functionshuffle
* Creates a new array of shuffled `array` values, using a version of the * Fisher-Yates shuffle. See http://en.wikipedia.org/wiki/Fisher-Yates_shuf
lodash.js:3043
Functionsize
* Gets the size of the `collection` by returning `collection.length` for arrays * and array-like objects or the number of own enumerable properties
lodash.js:2368
FunctionsuperMatcher
( seed, context, xml, results, expandContext )
jquery.js:4967
Functiontap
* Invokes `interceptor` with the `value` as the first argument, and then * returns `value`. The purpose of this method is to "tap into" a method ch
lodash.js:4214
Functiontemplate
(data)
underscore.js:1137
Functionthrottle
* Creates a new function that, when executed, will only call the `func` * function at most once per every `wait` milliseconds. If the throttled
lodash.js:3677
Functiontick
()
jquery.js:8617
Functiontimes
* Executes the `callback` function `n` times. The `callback` is bound to * `thisArg` and invoked with 1 argument; (index). * * @static * @
lodash.js:4112
FunctiontoArray
* Converts the `collection`, to an array. Useful for converting the * `arguments` object. * * @static * @memberOf _ * @category Collect
lodash.js:2462
Functiontoggler
( event )
jquery.js:3618
FunctiontokenizeEvaluate
* Used by `template` to replace "evaluate" template delimiters, or complex * "escape" and "interpolate" delimiters, with tokens. * * @private
lodash.js:860
FunctiontrailingCall
()
lodash.js:3684
Functionunescape
* Converts the HTML entities `&amp;`, `&lt;`, `&gt;`, `&quot;`, and `&#x27;` * in `string` to their corresponding characters. * * @static
lodash.js:4139
FunctionunescapeHtmlChar
* Used by `unescape` to convert HTML entities to characters. * * @private * @param {String} match The matched character to unescape. * @re
lodash.js:895
Functionunion
* Computes the union of the passed-in arrays using strict equality for * comparisons, i.e. `===`. * * @static * @memberOf _ * @category
lodash.js:3136
Functionuniq
* Creates a duplicate-value-free version of the `array` using strict equality * for comparisons, i.e. `===`. If the `array` is already sorted, pass
lodash.js:3180
FunctionuniqueId
* Generates a unique id. If `prefix` is passed, the id will be appended to it. * * @static * @memberOf _ * @category Utilities * @param
lodash.js:4157
FunctionupdateEvents
()
main.js:46
Functionwithout
* Creates a new array with all occurrences of the passed values removed using * strict equality for comparisons, i.e. `===`. * * @static *
lodash.js:3229
Functionwrap
* Creates a new function that passes `value` to the `wrapper` function as its * first argument. Additional arguments passed to the new function are
lodash.js:3730
Functionwrapper
()
jquery-throttle-debounce.js:141
FunctionwrapperChain
* Enables method chaining on the wrapper object. * * @name chain * @deprecated * @memberOf _ * @category Chaining * @returns {Mixed}
lodash.js:4232
FunctionwrapperValue
* Extracts the wrapped value. * * @name value * @memberOf _ * @category Chaining * @returns {Mixed} Returns the wrapped value. * @ex
lodash.js:4249
Functionzip
* Groups the elements of each array at their corresponding indexes. Useful for * separate data sources that are coordinated through matching array
lodash.js:3262
← previous101–172 of 172, ranked by callers