MCPcopy Index your code
hub / github.com/Effect-TS/effect / isPropertyKey

Function isPropertyKey

packages/effect/src/Predicate.ts:419–419  ·  view source on GitHub ↗
(u: unknown)

Source from the content-addressed store, hash-verified

417 * @internal
418 */
419export const isPropertyKey = (u: unknown): u is PropertyKey => isString(u) || isNumber(u) || isSymbol(u)
420
421/**
422 * A refinement that checks if a value is a `Function`.

Callers

nothing calls this directly

Calls 3

isNumberFunction · 0.85
isSymbolFunction · 0.85
isStringFunction · 0.70

Tested by

no test coverage detected