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

Function keys

packages/effect/src/Record.ts:974–975  ·  view source on GitHub ↗
(self: ReadonlyRecord<K, A>)

Source from the content-addressed store, hash-verified

972 * @since 2.0.0
973 */
974export const keys = <K extends string | symbol, A>(self: ReadonlyRecord<K, A>): Array<K & string> =>
975 Object.keys(self) as Array<K & string>
976
977/**
978 * Retrieves the values of a given record as an array.

Callers 6

Record.tsFile · 0.70
sizeFunction · 0.70
getSomesFunction · 0.70
getFailuresFunction · 0.70
getSuccessesFunction · 0.70
isSubrecordByFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected