MCPcopy Create free account

hub / github.com/NUKnightLab/sql-mysteries / functions

Functions973 in github.com/NUKnightLab/sql-mysteries

FunctionarrayIncludesWith
* This function is like `arrayIncludes` except that it accepts a comparator. * * @private * @param {Array} [array] The array to inspect. *
scripts/lodash.js:612
FunctionarrayReduceRight
* A specialized version of `_.reduceRight` for arrays without support for * iteratee shorthands. * * @private * @param {Array} [array] The
scripts/lodash.js:700
FunctionarraySampleSize
* A specialized version of `_.sampleSize` for arrays. * * @private * @param {Array} array The array to sample. * @param {number} n
scripts/lodash.js:2444
FunctionarrayShuffle
* A specialized version of `_.shuffle` for arrays. * * @private * @param {Array} array The array to shuffle. * @returns {Array} Re
scripts/lodash.js:2455
FunctionbaseAggregator
* Aggregates elements of `collection` on `accumulator` with keys transformed * by `iteratee` and values set by `setter`. * * @private
scripts/lodash.js:2522
FunctionbaseEvery
* The base implementation of `_.every` without support for iteratee shorthands. * * @private * @param {Array|Object} collection The col
scripts/lodash.js:2858
FunctionbaseFilter
* The base implementation of `_.filter` without support for iteratee shorthands. * * @private * @param {Array|Object} collection The co
scripts/lodash.js:2932
FunctionbaseGt
* The base implementation of `_.gt` which doesn't coerce arguments. * * @private * @param {*} value The value to compare. * @param
scripts/lodash.js:3101
FunctionbaseHas
* The base implementation of `_.has` without support for deep paths. * * @private * @param {Object} [object] The object to query.
scripts/lodash.js:3113
FunctionbaseHasIn
* The base implementation of `_.hasIn` without support for deep paths. * * @private * @param {Object} [object] The object to query.
scripts/lodash.js:3125
FunctionbaseIndexOfWith
* This function is like `baseIndexOf` except that it accepts a comparator. * * @private * @param {Array} array The array to inspect. * @pa
scripts/lodash.js:834
FunctionbaseIsArrayBuffer
* The base implementation of `_.isArrayBuffer` without Node.js optimizations. * * @private * @param {*} value The value to check.
scripts/lodash.js:3258
FunctionbaseIsDate
* The base implementation of `_.isDate` without Node.js optimizations. * * @private * @param {*} value The value to check. * @retu
scripts/lodash.js:3269
FunctionbaseIsMap
* The base implementation of `_.isMap` without Node.js optimizations. * * @private * @param {*} value The value to check. * @retur
scripts/lodash.js:3363
FunctionbaseIsNaN
* The base implementation of `_.isNaN` without support for number objects. * * @private * @param {*} value The value to check. * @returns
scripts/lodash.js:853
FunctionbaseIsRegExp
* The base implementation of `_.isRegExp` without Node.js optimizations. * * @private * @param {*} value The value to check. * @re
scripts/lodash.js:3444
FunctionbaseIsSet
* The base implementation of `_.isSet` without Node.js optimizations. * * @private * @param {*} value The value to check. * @retur
scripts/lodash.js:3455
FunctionbaseIsTypedArray
* The base implementation of `_.isTypedArray` without Node.js optimizations. * * @private * @param {*} value The value to check. *
scripts/lodash.js:3466
FunctionbaseLodash
* The function whose prototype chain sequence wrappers inherit from. * * @private
scripts/lodash.js:1703
FunctionbaseLt
* The base implementation of `_.lt` which doesn't coerce arguments. * * @private * @param {*} value The value to compare. * @param
scripts/lodash.js:3546
FunctionbaseReduce
* The base implementation of `_.reduce` and `_.reduceRight`, without support * for iteratee shorthands, which iterates over `collection` using `eac
scripts/lodash.js:910
FunctionbaseSample
* The base implementation of `_.sample`. * * @private * @param {Array|Object} collection The collection to sample. * @returns {*}
scripts/lodash.js:3958
FunctionbaseSampleSize
* The base implementation of `_.sampleSize` without param guards. * * @private * @param {Array|Object} collection The collection to sam
scripts/lodash.js:3970
FunctionbaseShuffle
* The base implementation of `_.shuffle`. * * @private * @param {Array|Object} collection The collection to shuffle. * @returns {A
scripts/lodash.js:4052
FunctionbaseSome
* The base implementation of `_.some` without support for iteratee shorthands. * * @private * @param {Array|Object} collection The coll
scripts/lodash.js:4095
FunctionbuildToken
(builder, text, style, startStyle, endStyle, title, css)
scripts/codemirror.js:1884
Functioncancel
()
scripts/lodash.js:10388
FunctioncastArray
* Casts `value` as an array if it's not one. * * @static * @memberOf _ * @since 4.4.0 * @category Lang * @param {*} valu
scripts/lodash.js:10994
FunctioncastArrayLikeObject
* Casts `value` to an empty array if it's not an array like object. * * @private * @param {*} value The value to inspect. * @retur
scripts/lodash.js:4452
Functionchunk
* Creates an array of elements split into groups the length of `size`. * If `array` can't be split evenly, the final chunk will be the remaining
scripts/lodash.js:6839
Functionclamp
* Clamps `number` within the inclusive `lower` and `upper` bounds. * * @static * @memberOf _ * @since 4.0.0 * @category Numbe
scripts/lodash.js:13980
Functionclone
* Creates a shallow clone of `value`. * * **Note:** This method is loosely based on the * [structured clone algorithm](https://mdn.io/S
scripts/lodash.js:11028
FunctioncloneDeep
* This method is like `_.clone` except that it recursively clones `value`. * * @static * @memberOf _ * @since 1.0.0 * @catego
scripts/lodash.js:11086
FunctioncloneDeepWith
* This method is like `_.cloneWith` except that it recursively clones `value`. * * @static * @memberOf _ * @since 4.0.0 * @ca
scripts/lodash.js:11118
FunctioncloneWith
* This method is like `_.clone` except that it accepts `customizer` which * is invoked to produce the cloned value. If `customizer` returns `unde
scripts/lodash.js:11063
Functioncompact
* Creates an array with all falsey values removed. The values `false`, `null`, * `0`, `""`, `undefined`, and `NaN` are falsey. * * @sta
scripts/lodash.js:6874
Functionconcat
* Creates a new array concatenating `array` with any additional arrays * and/or values. * * @static * @memberOf _ * @since 4.
scripts/lodash.js:6911
Functioncond
* Creates a function that iterates over `pairs` and invokes the corresponding * function of the first predicate to return truthy. The predicate-f
scripts/lodash.js:15317
Functionconforms
* Creates a function that invokes the predicate properties of `source` with * the corresponding property values of a given object, returning `tru
scripts/lodash.js:15363
FunctionconformsTo
* Checks if `object` conforms to `source` by invoking the predicate * properties of `source` with the corresponding property values of `object`.
scripts/lodash.js:11147
MethodconnectedCallback
()
scripts/main.js:97
MethodconnectedCallback
()
scripts/main.js:128
MethodconnectedCallback
()
scripts/main.js:209
Methodconstructor
()
scripts/main.js:93
Methodconstructor
()
scripts/main.js:124
Methodconstructor
()
scripts/main.js:205
FunctioncoordsBidiPart
(cm, lineObj, lineNo$$1, preparedMeasure, order, x, y)
scripts/codemirror.js:2888
FunctioncoordsBidiPartWrapped
(cm, lineObj, _lineNo, preparedMeasure, order, x, y)
scripts/codemirror.js:2912
Functioncreate
* Creates an object that inherits from the `prototype` object. If a * `properties` object is given, its own enumerable string keyed properties
scripts/lodash.js:12759
Functioncurry
* Creates a function that accepts arguments of `func` and either invokes * `func` returning its result, if at least `arity` number of arguments h
scripts/lodash.js:10198
FunctioncurryRight
* This method is like `_.curry` except that arguments are applied to `func` * in the manner of `_.partialRight` instead of `_.partial`. *
scripts/lodash.js:10243
FunctioncustomDefaultsAssignIn
* Used by `_.defaults` to customize its `_.assignIn` use to assign properties * of source objects to the destination object for all destination p
scripts/lodash.js:5575
FunctioncustomDefaultsMerge
* Used by `_.defaultsDeep` to customize its `_.merge` use to merge source * objects into destination objects that are passed thru. * *
scripts/lodash.js:5597
FunctioncustomOmitClone
* Used by `_.omit` to customize its `_.cloneDeep` use to only clone plain * objects. * * @private * @param {*} value The value to
scripts/lodash.js:5616
Functiondebounced
()
scripts/lodash.js:10400
FunctiondefaultSpecialCharPlaceholder
(ch)
scripts/codemirror.js:1875
FunctiondefaultTo
* Checks `value` to determine whether a default value should be returned in * its place. The `defaultValue` is returned if `value` is `NaN`, `nul
scripts/lodash.js:15412
FunctiondefineMIME
(mime, spec)
scripts/codemirror.js:1321
FunctiondefineMode
(name, mode)
scripts/codemirror.js:1315
FunctiondragDropChanged
(cm, value, old)
scripts/codemirror.js:7745
FunctiondragStart
()
scripts/codemirror.js:7353
Functiondrop
* Creates a slice of `array` with `n` elements dropped from the beginning. * * @static * @memberOf _ * @since 0.5.0 * @catego
scripts/lodash.js:7047
FunctiondropRight
* Creates a slice of `array` with `n` elements dropped from the end. * * @static * @memberOf _ * @since 3.0.0 * @category Arr
scripts/lodash.js:7081
FunctiondropRightWhile
* Creates a slice of `array` excluding elements dropped from the end. * Elements are dropped until `predicate` returns falsey. The predicate is
scripts/lodash.js:7126
FunctiondropWhile
* Creates a slice of `array` excluding elements dropped from the beginning. * Elements are dropped until `predicate` returns falsey. The predicat
scripts/lodash.js:7167
FunctionendsWith
* Checks if `string` ends with the given target string. * * @static * @memberOf _ * @since 3.0.0 * @category String * @p
scripts/lodash.js:14208
Functionescape
* Converts the characters "&", "<", ">", '"', and "'" in `string` to their * corresponding HTML entities. * * **Note:** No other charac
scripts/lodash.js:14250
FunctionescapeRegExp
* Escapes the `RegExp` special characters "^", "$", "\", ".", "*", "+", * "?", "(", ")", "[", "]", "{", "}", and "|" in `string`. * * @
scripts/lodash.js:14272
FunctionescapeStringChar
* Used by `_.template` to escape characters for inclusion in compiled string literals. * * @private * @param {string} chr The matched charact
scripts/lodash.js:1116
Functionevery
* Checks if `predicate` returns truthy for **all** elements of `collection`. * Iteration is stopped once `predicate` returns falsey. The predicat
scripts/lodash.js:9126
FunctionextendMode
(mode, properties)
scripts/codemirror.js:1370
Functionfill
* Fills elements of `array` with `value` from `start` up to, but not * including, `end`. * * **Note:** This method mutates `array`.
scripts/lodash.js:7202
FunctionfindIndex
* This method is like `_.find` except that it returns the index of the first * element `predicate` returns truthy for instead of the element itse
scripts/lodash.js:7249
FunctionfindKey
* This method is like `_.find` except that it returns the key of the first * element `predicate` returns truthy for instead of the element itself
scripts/lodash.js:12875
FunctionfindLastIndex
* This method is like `_.findIndex` except that it iterates over elements * of `collection` from right to left. * * @static * @mem
scripts/lodash.js:7296
FunctionfindLastKey
* This method is like `_.findKey` except that it iterates over elements of * a collection in the opposite order. * * @static * @me
scripts/lodash.js:12914
FunctionfireOrphanDelayed
()
scripts/codemirror.js:2162
FunctionflatMap
* Creates a flattened array of values by running each element in `collection` * thru `iteratee` and flattening the mapped results. The iteratee i
scripts/lodash.js:9256
FunctionflatMapDeep
* This method is like `_.flatMap` except that it recursively flattens the * mapped results. * * @static * @memberOf _ * @sinc
scripts/lodash.js:9280
FunctionflatMapDepth
* This method is like `_.flatMap` except that it recursively flattens the * mapped results up to `depth` times. * * @static * @mem
scripts/lodash.js:9305
Functionflatten
* Flattens `array` a single level deep. * * @static * @memberOf _ * @since 0.1.0 * @category Array * @param {Array} arra
scripts/lodash.js:7325
FunctionflattenDeep
* Recursively flattens `array`. * * @static * @memberOf _ * @since 3.0.0 * @category Array * @param {Array} array The ar
scripts/lodash.js:7344
FunctionflattenDepth
* Recursively flatten `array` up to `depth` times. * * @static * @memberOf _ * @since 4.4.0 * @category Array * @param {
scripts/lodash.js:7369
Functionflip
* Creates a function that invokes `func` with arguments reversed. * * @static * @memberOf _ * @since 4.0.0 * @category Functi
scripts/lodash.js:10491
Functionflush
()
scripts/lodash.js:10396
FunctionforEach
* Iterates over elements of `collection` and invokes `iteratee` for each element. * The iteratee is invoked with three arguments: (value, index|k
scripts/lodash.js:9340
FunctionforEachRight
* This method is like `_.forEach` except that it iterates over elements of * `collection` from right to left. * * @static * @membe
scripts/lodash.js:9365
FunctionforIn
* Iterates over own and inherited enumerable string keyed properties of an * object and invokes `iteratee` for each property. The iteratee is inv
scripts/lodash.js:12946
FunctionforInRight
* This method is like `_.forIn` except that it iterates over properties of * `object` in the opposite order. * * @static * @member
scripts/lodash.js:12978
FunctionforOwn
* Iterates over own enumerable string keyed properties of an object and * invokes `iteratee` for each property. The iteratee is invoked with thre
scripts/lodash.js:13012
FunctionforOwnRight
* This method is like `_.forOwn` except that it iterates over properties of * `object` in the opposite order. * * @static * @membe
scripts/lodash.js:13042
FunctionfromPairs
* The inverse of `_.toPairs`; this method returns an object composed * from key-value `pairs`. * * @static * @memberOf _ * @s
scripts/lodash.js:7393
FunctionfromTextArea
(textarea, options)
scripts/codemirror.js:9543
Functionfunctions
* Creates an array of function property names from own enumerable properties * of `object`. * * @static * @since 0.1.0 * @mem
scripts/lodash.js:13069
FunctionfunctionsIn
* Creates an array of function property names from own and inherited * enumerable properties of `object`. * * @static * @memberOf
scripts/lodash.js:13096
MethodhandleError
(e)
scripts/main.js:287
MethodhandleSubmit
(submission_data)
scripts/main.js:261
Functionhas
* Checks if `path` is a direct property of `object`. * * @static * @since 0.1.0 * @memberOf _ * @category Object * @para
scripts/lodash.js:13157
FunctionhashClear
* Removes all key-value entries from the hash. * * @private * @name clear * @memberOf Hash
scripts/lodash.js:1936
FunctionhashDelete
* Removes `key` and its value from the hash. * * @private * @name delete * @memberOf Hash * @param {Object} hash The hash to
scripts/lodash.js:1951
← previousnext →701–800 of 973, ranked by callers