MCPcopy Index your code
hub / github.com/reactstrap/reactstrap / isFunction

Function isFunction

src/utils.js:271–283  ·  view source on GitHub ↗
(value)

Source from the content-addressed store, hash-verified

269}
270
271export function isFunction(value) {
272 if (!isObject(value)) {
273 return false;
274 }
275
276 const tag = getTag(value);
277 return (
278 tag === '[object Function]' ||
279 tag === '[object AsyncFunction]' ||
280 tag === '[object GeneratorFunction]' ||
281 tag === '[object Proxy]'
282 );
283}
284
285export function findDOMElements(target) {
286 if (isReactRefObj(target)) {

Callers 1

findDOMElementsFunction · 0.85

Calls 2

isObjectFunction · 0.85
getTagFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…