Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/dhruvaray/backbone-associations
/ functions
Functions
303 in github.com/dhruvaray/backbone-associations
⨍
Functions
303
◇
Types & classes
0
Function
defer
* Defers executing the `func` function until the current call stack has cleared. * Additional arguments will be provided to `func` when it is
test/lib/lodash.js:5490
Function
delay
* Executes the `func` function after `wait` milliseconds. Additional arguments * will be provided to `func` when it is invoked. *
test/lib/lodash.js:5514
Function
delayed
()
test/lib/lodash.js:5398
Function
dept2
()
test/associated-model.js:388
Function
difference
* Creates an array excluding all values of the provided arrays using strict * equality for comparisons, i.e. `===`. * * @st
test/lib/lodash.js:4141
Function
doAnimation
()
test/lib/jquery.js:9032
Function
escapeHtmlChar
* Used by `escape` to convert characters to HTML entities. * * @private * @param {string} match The matched character to es
test/lib/lodash.js:1459
Function
escapeStringChar
* Used by `template` to escape characters for inclusion in compiled * string literals. * * @private * @param {string} match The ma
test/lib/lodash.js:325
Function
every
* Checks if the given callback returns truey value for **all** elements of * a collection. The callback is bound to `thisArg` and invoked wit
test/lib/lodash.js:3079
Function
extend
(protoProps, staticProps)
test/lib/backbone.js:1556
Function
fcamelCase
( all, letter )
test/lib/jquery.js:75
Function
findIndex
* This method is like `_.find` except that it returns the index of the first * element that passes the callback check, instead of the element
test/lib/lodash.js:4186
Function
findKey
* This method is like `_.findIndex` except that it returns the key of the * first element that passes the callback check, instead of the elem
test/lib/lodash.js:1921
Function
findLast
* This method is like `_.find` except that it iterates over elements * of a `collection` from right to left. * * @static
test/lib/lodash.js:3252
Function
findLastIndex
* This method is like `_.findIndex` except that it iterates over elements * of a `collection` from right to left. * * If a
test/lib/lodash.js:4240
Function
findLastKey
* This method is like `_.findKey` except that it iterates over elements * of a `collection` in the opposite order. * * If a
test/lib/lodash.js:1974
Function
first
* Gets the first element or first `n` elements of an array. If a callback * is provided elements at the beginning of the array are returned a
test/lib/lodash.js:4302
Function
flatten
* Flattens a nested array (the nesting can be to any depth). If `isShallow` * is truey, the array will only be flattened a single level. If a
test/lib/lodash.js:4362
Function
forInRight
* This method is like `_.forIn` except that it iterates over elements * of a `collection` in the opposite order. * * @stati
test/lib/lodash.js:2056
Function
getSeparator
()
backbone-associations.js:61
Function
handler
( event )
test/lib/jquery.js:3464
Function
has
* Checks if the specified property name exists as a direct property of `object`, * instead of an inherited property. * * @s
test/lib/lodash.js:2182
Function
identity
* This method returns the first argument provided to it. * * @static * @memberOf _ * @category Utilities
test/lib/lodash.js:5862
Function
initial
* Gets all but the last element or last `n` elements of an array. If a * callback is provided elements at the end of the array are excluded f
test/lib/lodash.js:4460
Function
intersection
* Creates an array of unique values present in all provided arrays using * strict equality for comparisons, i.e. `===`. * *
test/lib/lodash.js:4490
Function
invoke
* Invokes the method named by `methodName` on each element in the `collection` * returning an array of the results of each invoked method. Ad
test/lib/lodash.js:3448
Function
isBoolean
* Checks if `value` is a boolean value. * * @static * @memberOf _ * @category Objects * @param {*} value
test/lib/lodash.js:2225
Function
isDate
* Checks if `value` is a date. * * @static * @memberOf _ * @category Objects * @param {*} value The value
test/lib/lodash.js:2243
Function
isElement
* Checks if `value` is a DOM element. * * @static * @memberOf _ * @category Objects * @param {*} value Th
test/lib/lodash.js:2260
Function
isEmpty
* Checks if `value` is empty. Arrays, strings, or `arguments` objects with a * length of `0` and objects with no own enumerable properties ar
test/lib/lodash.js:2285
Function
isEqual
* Performs a deep comparison between two values to determine if they are * equivalent to each other. If a callback is provided it will be exe
test/lib/lodash.js:2341
Function
isNull
* Checks if `value` is `null`. * * @static * @memberOf _ * @category Objects * @param {*} value The value
test/lib/lodash.js:2469
Function
isRegExp
* Checks if `value` is a regular expression. * * @static * @memberOf _ * @category Objects * @param {*} v
test/lib/lodash.js:2542
Function
isUndefined
* Checks if `value` is `undefined`. * * @static * @memberOf _ * @category Objects * @param {*} value The
test/lib/lodash.js:2577
Function
last
* Gets the last element or last `n` elements of an array. If a callback is * provided elements at the end of the array are returned as long a
test/lib/lodash.js:4590
Function
lastIndexOf
* Gets the index at which the last occurrence of `value` is found using strict * equality for comparisons, i.e. `===`. If `fromIndex` is nega
test/lib/lodash.js:4636
Function
later
()
test/lib/underscore.js:686
Function
lazy
(fids, type)
test/associated-model.js:1565
Function
literal
( o )
test/lib/qunit.js:1908
Function
lodash
* Creates a `lodash` object which wraps the given value to enable intuitive * method chaining. * * In addition to Lo-Dash m
test/lib/lodash.js:587
Function
lodashWrapper
* A fast path for creating `lodash` wrapper objects. * * @private * @param {*} value The value to wrap in a `lodash` instan
test/lib/lodash.js:602
Function
map2dept
(id)
test/associated-model.js:125
Function
map2locs
(ids)
test/associated-model.js:44
Function
mapValues
* Creates an object with the same keys as `object` and values generated by * running each own enumerable property of `object` through the cal
test/lib/lodash.js:2617
Function
maxDelayed
()
test/lib/lodash.js:5418
Function
memoize
* Creates a function that memoizes the result of `func`. If `resolver` is * provided it will be used to determine the cache key for storing t
test/lib/lodash.js:5559
Function
memoized
()
test/lib/lodash.js:5563
Function
merge
* Recursively merges own enumerable properties of the source object(s), that * don't resolve to `undefined` into the destination object. Subs
test/lib/lodash.js:2678
Function
min
* Retrieves the minimum value of a collection. If the collection is empty or * falsey `Infinity` is returned. If a callback is provided it wi
test/lib/lodash.js:3634
Function
next
()
test/lib/jquery.js:1875
Function
next
()
test/lib/qunit.js:1008
Function
noConflict
* Reverts the '_' variable to its previous value and returns a reference to * the `lodash` function. * * @static *
test/lib/lodash.js:5950
Function
noop
* A no-operation function. * * @static * @memberOf _ * @category Utilities * @example *
test/lib/lodash.js:5967
Function
omit
* Creates a shallow clone of `object` excluding the specified properties. * Property names may be specified as individual arguments or as arr
test/lib/lodash.js:2734
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 `
test/lib/lodash.js:5592
Function
pairs
* Creates a two dimensional array of an object's key-value pairs, * i.e. `[[key1, value1], [key2, value2]]`. * * @static
test/lib/lodash.js:2775
Function
partial
* Creates a function that, when called, invokes `func` with any additional * `partial` arguments prepended to those provided to the new funct
test/lib/lodash.js:5630
Function
partialRight
* This method is like `_.partial` except that `partial` arguments are * appended to those provided to the new function. * *
test/lib/lodash.js:5661
Function
pick
* Creates a shallow clone of `object` composed of the specified properties. * Property names may be specified as individual arguments or as a
test/lib/lodash.js:2815
Function
polymorphic
(relation, attributes)
test/associated-model.js:1545
Function
pull
* Removes all provided values from the given array using strict equality for * comparisons, i.e. `===`. * * @static
test/lib/lodash.js:4666
Function
quote
( str )
test/lib/qunit.js:1905
Function
random
* Produces a random number between `min` and `max` (inclusive). If only one * argument is provided a number between `0` and the given number
test/lib/lodash.js:6069
Function
range
* Creates an array of numbers (positive and/or negative) progressing from * `start` up to but not including `end`. If `start` is less than `s
test/lib/lodash.js:4717
Function
reduce
* Reduces a collection to a value which is the accumulated result of running * each element in the collection through the callback, where eac
test/lib/lodash.js:3721
Function
reduceRight
* This method is like `_.reduce` except that it iterates over elements * of a `collection` from right to left. * * @static
test/lib/lodash.js:3765
Function
reject
* The opposite of `_.filter` this method returns the elements of a * collection that the callback does **not** return truey for. *
test/lib/lodash.js:3814
Function
remove
* Removes all elements from an array that the callback returns truey for * and returns an array of removed elements. The callback is bound to
test/lib/lodash.js:4770
Function
removeClass
( elem, name )
test/lib/qunit.js:1139
Function
rest
* The opposite of `_.initial` this method gets all but the first element or * first `n` elements of an array. If a callback function is provi
test/lib/lodash.js:4839
Function
result
(obj)
test/lib/underscore.js:1291
Function
returnFalse
()
test/lib/jquery.js:3274
Function
returnTrue
()
test/lib/jquery.js:3277
Function
sample
* Retrieves a random element or `n` random elements from a collection. * * @static * @memberOf _ * @category Colle
test/lib/lodash.js:3840
Function
setFilters
()
test/lib/jquery.js:5338
Function
shimKeys
(object)
test/lib/lodash.js:1592
Function
size
* Gets the size of the `collection` by returning `collection.length` for arrays * and array-like objects or the number of own enumerable prop
test/lib/lodash.js:3899
Function
some
* Checks if the callback returns a truey value for **any** element of a * collection. The function returns as soon as it finds a passing valu
test/lib/lodash.js:3946
Function
sortBy
* Creates an array of elements, sorted in ascending order by the results of * running each element in a collection through the callback. This
test/lib/lodash.js:4016
Function
superMatcher
( seed, context, xml, results, expandContext )
test/lib/jquery.js:4981
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 meth
test/lib/lodash.js:6447
Function
template
(data)
test/lib/underscore.js:1269
Function
template
* A micro-templating method that handles arbitrary delimiters, preserves * whitespace, and correctly escapes quotes within interpolated code.
test/lib/lodash.js:6220
Function
throttle
* Creates a function that, when executed, will only call the `func` function * at most once per every `wait` milliseconds. Provide an options
test/lib/lodash.js:5696
Function
tick
()
test/lib/jquery.js:8635
Function
times
* Executes the callback `n` times, returning an array of the results * of each callback execution. The callback is bound to `thisArg` and inv
test/lib/lodash.js:6343
Function
toArray
* Converts the `collection` to an array. * * @static * @memberOf _ * @category Collections * @param {Arra
test/lib/lodash.js:4062
Function
toggler
( event )
test/lib/jquery.js:3613
Function
transform
* An alternative to `_.reduce` this method transforms `object` to a new * `accumulator` object which is the result of running each of its own
test/lib/lodash.js:2870
Function
unescape
* The inverse of `_.escape` this method converts the HTML entities * `&`, `<`, `>`, `"`, and `'` in `string` to their
test/lib/lodash.js:6370
Function
unescapeHtmlChar
* Used by `unescape` to convert HTML entities to characters. * * @private * @param {string} match The matched character to
test/lib/lodash.js:1534
Function
union
* Creates an array of unique values, in order, of the provided arrays using * strict equality for comparisons, i.e. `===`. *
test/lib/lodash.js:4934
Function
uniq
* Creates a duplicate-value-free version of an array using strict equality * for comparisons, i.e. `===`. If the array is sorted, providing
test/lib/lodash.js:4982
Function
uniqueId
* Generates a unique ID. If `prefix` is provided the ID will be appended to it. * * @static * @memberOf _ * @categ
test/lib/lodash.js:6390
Function
useStrictEquality
( b, a )
test/lib/qunit.js:1717
Function
without
* Creates an array excluding all provided values using strict equality for * comparisons, i.e. `===`. * * @static
test/lib/lodash.js:5010
Function
wrap
* Creates a function that provides `value` to the wrapper function as its * first argument. Additional arguments provided to the function are
test/lib/lodash.js:5737
Function
wrapperChain
* Enables explicit method chaining on the wrapper object. * * @name chain * @memberOf _ * @category Chaining
test/lib/lodash.js:6477
Function
wrapperToString
* Produces the `toString` result of the wrapped value. * * @name toString * @memberOf _ * @category Chaining
test/lib/lodash.js:6494
Function
wrapperValueOf
* Extracts the wrapped value. * * @name valueOf * @memberOf _ * @alias value * @category Chaining
test/lib/lodash.js:6511
← previous
next →
201–300 of 303, ranked by callers