MCPcopy
hub / github.com/reduxjs/redux / kindOf

Function kindOf

src/utils/kindOf.ts:62–70  ·  view source on GitHub ↗
(val: any)

Source from the content-addressed store, hash-verified

60}
61
62export function kindOf(val: any) {
63 let typeOfVal: string = typeof val
64
65 if (process.env.NODE_ENV !== 'production') {
66 typeOfVal = miniKindOf(val)
67 }
68
69 return typeOfVal
70}

Callers 6

bindActionCreatorsFunction · 0.90
createStoreFunction · 0.90
subscribeFunction · 0.90
dispatchFunction · 0.90
replaceReducerFunction · 0.90

Calls 1

miniKindOfFunction · 0.85

Tested by

no test coverage detected