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

Function ownKeys

packages/effect/src/Inspectable.ts:92–98  ·  view source on GitHub ↗
(o: object)

Source from the content-addressed store, hash-verified

90 }
91
92 const ownKeys = (o: object): Array<PropertyKey> => {
93 try {
94 return Reflect.ownKeys(o)
95 } catch {
96 return ["[ownKeys threw]"]
97 }
98 }
99
100 function go(v: unknown, d = 0): string {
101 if (Array.isArray(v)) {

Callers 1

goFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…