MCPcopy
hub / github.com/handsontable/handsontable / isFunction

Function isFunction

handsontable/src/helpers/function.ts:10–12  ·  view source on GitHub ↗
(func: T)

Source from the content-addressed store, hash-verified

8 * @returns {boolean}
9 */
10export function isFunction<T>(func: T): func is T & ((...args: unknown[]) => unknown) {
11 return typeof func === 'function';
12}
13
14/**
15 * Creates throttle function that enforces a maximum number of times a function (`func`) can be called over time (`wait`).

Callers 15

CoreFunction · 0.90
getValueSetterValueFunction · 0.90
getValueGetterValueFunction · 0.90
createUniqueMapFunction · 0.90
createPriorityMapFunction · 0.90
createUniqueSetFunction · 0.90
helpers.types.tsFile · 0.90
function.unit.tsFile · 0.90
clearValueMethod · 0.90
setDefaultValuesMethod · 0.90
getListWithInsertedItemsFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…