MCPcopy Create free account
hub / github.com/Effect-TS/effect / isObjectKeyword

Function isObjectKeyword

packages/effect/src/Predicate.ts:1105–1107  ·  view source on GitHub ↗
(input: unknown)

Source from the content-addressed store, hash-verified

1103 * @since 4.0.0
1104 */
1105export function isObjectKeyword(input: unknown): input is object {
1106 return (typeof input === "object" && input !== null) || isFunction(input)
1107}
1108
1109/**
1110 * Checks whether a value has a given property key.

Callers 1

Predicate.tsFile · 0.85

Calls 1

isFunctionFunction · 0.85

Tested by

no test coverage detected