MCPcopy Create free account

hub / github.com/clementmihailescu/Sorting-Visualizer / functions

Functions623 in github.com/clementmihailescu/Sorting-Visualizer

↓ 1 callersFunctionbaseIndexOf
* The base implementation of `_.indexOf` without `fromIndex` bounds checks. * * @private * @param {Array} array The array to inspect. * @param
client/public/bundle.js:25615
↓ 1 callersFunctionbaseIsArguments
* The base implementation of `_.isArguments`. * * @private * @param {*} value The value to check. * @returns {boolean} Returns `true` if `valu
client/public/bundle.js:26378
↓ 1 callersFunctionbaseIsEqualDeep
* A specialized version of `baseIsEqual` for arrays and objects which performs * deep comparisons and tracks traversed objects enabling objects with
client/public/bundle.js:29548
↓ 1 callersFunctionbaseIsMatch
* The base implementation of `_.isMatch` without support for iteratee shorthands. * * @private * @param {Object} object The object to inspect.
client/public/bundle.js:28534
↓ 1 callersFunctionbaseIsNative
* The base implementation of `_.isNative` without bad shim checks. * * @private * @param {*} value The value to check. * @returns {boolean} Re
client/public/bundle.js:27038
↓ 1 callersFunctionbaseIteratee
* The base implementation of `_.iteratee`. * * @private * @param {*} [value=_.identity] The value to convert to an iteratee. * @returns {Funct
client/public/bundle.js:28459
↓ 1 callersFunctionbaseMatches
* The base implementation of `_.matches` which doesn't clone `source`. * * @private * @param {Object} source The object of property values to ma
client/public/bundle.js:28497
↓ 1 callersFunctionbaseMatchesProperty
* The base implementation of `_.matchesProperty` which doesn't clone `srcValue`. * * @private * @param {string} path The path of the property to
client/public/bundle.js:30418
↓ 1 callersFunctionbaseProperty
* The base implementation of `_.property` without support for deep paths. * * @private * @param {string} key The key of the property to get. *
client/public/bundle.js:30928
↓ 1 callersFunctionbasePropertyDeep
* A specialized version of `baseProperty` which supports deep paths. * * @private * @param {Array|string} path The path of the property to get.
client/public/bundle.js:30953
↓ 1 callersFunctionbasePropertyOf
* The base implementation of `_.propertyOf` without support for deep paths. * * @private * @param {Object} object The object to query. * @retu
client/public/bundle.js:28052
↓ 1 callersFunctionbaseSlice
* The base implementation of `_.slice` without an iteratee call guard. * * @private * @param {Array} array The array to slice. * @param {numbe
client/public/bundle.js:27680
↓ 1 callersFunctionbaseTimes
* The base implementation of `_.times` without support for iteratee shorthands * or max array length checks. * * @private * @param {number} n
client/public/bundle.js:26300
↓ 1 callersFunctionbaseToString
* The base implementation of `_.toString` which doesn't convert nullish * values to empty strings. * * @private * @param {*} value The value t
client/public/bundle.js:27278
↓ 1 callersFunctionbaseUnary
* The base implementation of `_.unary` without support for storing metadata. * * @private * @param {Function} func The function to cap arguments
client/public/bundle.js:26610
↓ 1 callersFunctionbaseValues
* The base implementation of `_.values` and `_.valuesIn` which creates an * array of `object` property values corresponding to the property names
client/public/bundle.js:26141
↓ 1 callersFunctionbeginLifeCycleTimer
(debugID, timerType)
client/public/bundle.js:8461
↓ 1 callersFunctionbindAutoBindMethod
* Binds a method to the component. * * @param {object} component Component whose method is going to be bound. * @param {function} method Method
client/public/bundle.js:2609
↓ 1 callersFunctionbindAutoBindMethods
* Binds all auto-bound methods in a component. * * @param {object} component Component whose method is going to be bound.
client/public/bundle.js:2646
↓ 1 callersFunctionbuildMaxHeap
(array, toDispatch)
client/public/bundle.js:31397
↓ 1 callersFunctionbuildMaxHeap
(array, toDispatch)
client/app/algorithms/heapSort.js:29
↓ 1 callersFunctioncacheHas
* Checks if a `cache` value for `key` exists. * * @private * @param {Object} cache The cache to query. * @param {string} key The key of the en
client/public/bundle.js:29822
↓ 1 callersFunctioncallHook
(event, fn, context, arg1, arg2, arg3, arg4, arg5)
client/public/bundle.js:8369
↓ 1 callersFunctioncamelize
* Camelcases a hyphenated string, for example: * * > camelize('background-color') * < "backgroundColor" * * @param {string} string * @
client/public/bundle.js:12558
↓ 1 callersFunctioncamelizeStyleName
* Camelcases a hyphenated CSS property name, for example: * * > camelizeStyleName('background-color') * < "backgroundColor" * > camelize
client/public/bundle.js:12521
↓ 1 callersFunctioncapitalize
* Converts the first character of `string` to upper case and the remaining * to lower case. * * @static * @memberOf _ * @since 3.0.0 * @ca
client/public/bundle.js:27557
↓ 1 callersFunctioncastSlice
* Casts `array` to a slice if it's needed. * * @private * @param {Array} array The array to inspect. * @param {number} start The start positio
client/public/bundle.js:27655
↓ 1 callersFunctioncheckAndWarnForMutatedStyle
(style1, style2, component)
client/public/bundle.js:11144
↓ 1 callersFunctioncheckSelectPropTypes
* Validation function for `value` and `defaultValue`. * @private
client/public/bundle.js:14180
↓ 1 callersFunctioncombineReducers
* Turns an object whose values are different reducer functions, into a single * reducer function. It will call every child reducer, and gather their
client/public/bundle.js:23748
↓ 1 callersMethodcomponentDidMount
()
client/app/components/Main/Toolbar/Toolbar.jsx:11
↓ 1 callersFunctioncontainsNode
* Checks if a given DOM node contains or is another DOM node.
client/public/bundle.js:19434
↓ 1 callersFunctioncreateAnyTypeChecker
()
client/public/bundle.js:3891
↓ 1 callersFunctioncreateArrayFromMixed
* Ensure that the argument is an array by wrapping it in an array if it is not. * Creates a copy of the argument if it is already an array. * *
client/public/bundle.js:10877
↓ 1 callersFunctioncreateBaseEach
* Creates a `baseEach` or `baseEachRight` function. * * @private * @param {Function} eachFunc The function to iterate over a collection. * @pa
client/public/bundle.js:28415
↓ 1 callersFunctioncreateBaseFor
* Creates a base function for methods like `_.forIn` and `_.forOwn`. * * @private * @param {boolean} [fromRight] Specify iterating from right to
client/public/bundle.js:28378
↓ 1 callersFunctioncreateCaseFirst
* Creates a function like `_.lowerFirst`. * * @private * @param {string} methodName The name of the `String` case method to use. * @returns {F
client/public/bundle.js:27614
↓ 1 callersFunctioncreateChainedFunction
* Creates a function that invokes two functions and ignores their return vales. * * @param {function} one Function to invoke first. * @param {fu
client/public/bundle.js:2595
↓ 1 callersFunctioncreateCompounder
* Creates a function like `_.camelCase`. * * @private * @param {Function} callback The function to combine each word. * @returns {Function} Re
client/public/bundle.js:27860
↓ 1 callersFunctioncreateConnect
()
client/public/bundle.js:22794
↓ 1 callersFunctioncreateElementTypeChecker
()
client/public/bundle.js:3917
↓ 1 callersFunctioncreateLinkElement
(options)
client/public/bundle.js:24982
↓ 1 callersFunctioncreateListenerCollection
()
client/public/bundle.js:22181
↓ 1 callersFunctioncreateNodeChecker
()
client/public/bundle.js:4008
↓ 1 callersFunctioncreateNodesFromMarkup
* Creates an array containing the nodes rendered from the supplied markup. The * optionally supplied `handleScript` function will be invoked once fo
client/public/bundle.js:10722
↓ 1 callersFunctiondeburr
* Deburrs `string` by converting * [Latin-1 Supplement](https://en.wikipedia.org/wiki/Latin-1_Supplement_(Unicode_block)#Character_table) * and [L
client/public/bundle.js:27950
↓ 1 callersFunctiondefineDeprecationWarning
(methodName, info)
client/public/bundle.js:1869
↓ 1 callersFunctiondefineKeyPropWarningGetter
(props, displayName)
client/public/bundle.js:958
↓ 1 callersFunctiondefineRefPropWarningGetter
(props, displayName)
client/public/bundle.js:972
↓ 1 callersFunctiondescribeID
(id)
client/public/bundle.js:3410
↓ 1 callersFunctiondetachRef
(ref, component, owner)
client/public/bundle.js:8141
↓ 1 callersFunctiondrainQueue
()
client/public/bundle.js:303
↓ 1 callersFunctionendLifeCycleTimer
(debugID, timerType)
client/public/bundle.js:8475
↓ 1 callersFunctionequalByTag
* A specialized version of `baseIsEqualDeep` for comparing objects of * the same `toStringTag`. * * **Note:** This function only supports compar
client/public/bundle.js:29882
↓ 1 callersFunctionequalObjects
* A specialized version of `baseIsEqualDeep` for objects with support for * partial deep comparisons. * * @private * @param {Object} object Th
client/public/bundle.js:30050
↓ 1 callersFunctionescapeHtml
* Escape special characters in the given string of html. * * @param {string} string The string to escape for inserting into HTML * @return {str
client/public/bundle.js:10537
↓ 1 callersFunctionexecuteDispatchesInOrderStopAtTrueImpl
* Standard/simple iteration through an event's collected dispatches, but stops * at the first dispatch execution returning true, and returns that id
client/public/bundle.js:6225
↓ 1 callersFunctionextractBeforeInputEvent
* Extract a SyntheticInputEvent for `beforeInput`, based on either native * `textInput` or fallback behavior. * * @return {?object} A SyntheticI
client/public/bundle.js:5356
↓ 1 callersFunctionextractCompositionEvent
* @return {?object} A SyntheticCompositionEvent.
client/public/bundle.js:5196
↓ 1 callersFunctionfindParent
* Find the deepest React component completely containing the root of the * passed-in instance (for use when entire React trees are nested within eac
client/public/bundle.js:18484
↓ 1 callersFunctionfirstDifferenceIndex
* Finds the index of the first character * that's not common between the two given strings. * * @return {number} the index of the character wher
client/public/bundle.js:20953
↓ 1 callersFunctionflattenSingleChildIntoContext
* @param {function} traverseContext Context passed through traversal. * @param {?ReactComponent} child React child component. * @param {!string} n
client/public/bundle.js:17079
↓ 1 callersFunctionflushBatchedUpdates
()
client/public/bundle.js:7687
↓ 1 callersFunctionget
()
client/public/bundle.js:7131
↓ 1 callersFunctiongetClassName
(propValue)
client/public/bundle.js:4141
↓ 1 callersFunctiongetClosestInstanceFromNode
* Given a DOM node, return the closest ReactDOMComponent or * ReactDOMTextComponent instance ancestor.
client/public/bundle.js:4467
↓ 1 callersFunctiongetCompositionEventType
* Translate native top level events into event types. * * @param {string} topLevelType * @return {object}
client/public/bundle.js:5124
↓ 1 callersFunctiongetCurrentComponentErrorInfo
(parentType)
client/public/bundle.js:3059
↓ 1 callersFunctiongetFallbackBeforeInputChars
* For browsers that do not provide the `textInput` event, extract the * appropriate string to use for SyntheticInputEvent. * * @param {string} t
client/public/bundle.js:5302
↓ 1 callersFunctiongetHostRootInstanceInContainer
(container)
client/public/bundle.js:21111
↓ 1 callersFunctiongetListeningForDocument
(mountAt)
client/public/bundle.js:13217
↓ 1 callersFunctiongetLowestCommonAncestor
* Return the lowest common ancestor of A and B, or null if they are in * different trees.
client/public/bundle.js:18085
↓ 1 callersFunctiongetMarkupWrap
* Gets the markup wrap configuration for the supplied `nodeName`. * * NOTE: This lazily detects which wraps are necessary for the current browser.
client/public/bundle.js:10974
↓ 1 callersFunctiongetMatchData
* Gets the property names, values, and compare flags of `object`. * * @private * @param {Object} object The object to query. * @returns {Array
client/public/bundle.js:30322
↓ 1 callersFunctiongetNativeBeforeInputChars
* @param {string} topLevelType Record from `EventConstants`. * @param {object} nativeEvent Native browser event. * @return {?string} The string co
client/public/bundle.js:5248
↓ 1 callersFunctiongetNextDebugID
()
client/public/bundle.js:16707
↓ 1 callersFunctiongetNodeName
* Extracts the `nodeName` of the first element in a string of markup. * * @param {string} markup String of markup. * @return {?string} Node name
client/public/bundle.js:10707
↓ 1 callersFunctiongetPreciseType
(propValue)
client/public/bundle.js:4128
↓ 1 callersFunctiongetRawTag
* A specialized version of `baseGetTag` which ignores `Symbol.toStringTag` values. * * @private * @param {*} value The value to query. * @retu
client/public/bundle.js:23431
↓ 1 callersFunctiongetSelection
* Get an object which is a unique representation of the current selection. * * The return value will not be consistent across nodes or browsers, b
client/public/bundle.js:19926
↓ 1 callersFunctiongetSiblingNode
* Get the next sibling within a container. This will walk up the * DOM if a node's siblings have been exhausted. * * @param {DOMElement|DOMTextN
client/public/bundle.js:19366
↓ 1 callersFunctiongetTreeSnapshot
(registeredIDs)
client/public/bundle.js:8406
↓ 1 callersFunctiongetUnboundedScrollPosition
* Gets the scroll position of the supplied element or window. * * The return values are unbounded, unlike `getScrollPosition`. This means they *
client/public/bundle.js:18734
↓ 1 callersFunctiongetUndefinedStateErrorMessage
(key, action)
client/public/bundle.js:23684
↓ 1 callersFunctiongetUnexpectedStateShapeWarningMessage
(inputState, reducers, action, unexpectedKeyCache)
client/public/bundle.js:23691
↓ 1 callersFunctiongetValue
* Gets the value at `key` of `object`. * * @private * @param {Object} [object] The object to query. * @param {string} key The key of the prope
client/public/bundle.js:27143
↓ 1 callersFunctionhandleDispatch
(toDispatch, dispatch, array, speed)
client/app/algorithms/heapSort.js:62
↓ 1 callersFunctionhandleDispatch
(toDispatch, dispatch, array, speed)
client/app/algorithms/mergeSort.js:55
↓ 1 callersFunctionhandleDispatch
(toDispatch, dispatch, array, speed)
client/app/algorithms/bubbleSort.js:33
↓ 1 callersFunctionhandleDispatch
(toDispatch, dispatch, array, speed)
client/app/algorithms/quickSort.js:56
↓ 1 callersFunctionhandleFirstCall
(firstState, firstOwnProps)
client/public/bundle.js:24262
↓ 1 callersFunctionhandleNewProps
()
client/public/bundle.js:24281
↓ 1 callersFunctionhandleNewPropsAndNewState
()
client/public/bundle.js:24272
↓ 1 callersFunctionhandleNewState
()
client/public/bundle.js:24290
↓ 1 callersFunctionhandleSubsequentCalls
(nextState, nextOwnProps)
client/public/bundle.js:24300
↓ 1 callersFunctionhasArrayNature
* Perform a heuristic test to determine if an object is "array-like". * * A monk asked Joshu, a Zen master, "Has a dog Buddha nature?" * Jos
client/public/bundle.js:10834
↓ 1 callersFunctionhasIn
* Checks if `path` is a direct or inherited property of `object`. * * @static * @memberOf _ * @since 4.0.0 * @category Object * @param {Ob
client/public/bundle.js:30796
↓ 1 callersFunctionhasPath
* Checks if `path` exists on `object`. * * @private * @param {Object} object The object to query. * @param {Array|string} path The path to che
client/public/bundle.js:30848
↓ 1 callersFunctionhasUnicodeWord
* Checks if `string` contains a word composed of Unicode symbols. * * @private * @param {string} string The string to inspect. * @returns {boo
client/public/bundle.js:28146
↓ 1 callersFunctionhyphenate
* Hyphenates a camelcased string, for example: * * > hyphenate('backgroundColor') * < "background-color" * * For CSS style names, use `h
client/public/bundle.js:12733
← previousnext →201–300 of 623, ranked by callers