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

Function keys

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

Source from the content-addressed store, hash-verified

910 * @since 2.0.0
911 */
912export const keys = <K extends string | symbol, A>(self: ReadonlyRecord<K, A>): Array<K & string> =>
913 Object.keys(self) as Array<K & string>
914
915/**
916 * Retrieve the values of a given record as an array.

Callers 6

isEmptyRecordFunction · 0.70
Record.tsFile · 0.70
sizeFunction · 0.70
getLeftsFunction · 0.70
getRightsFunction · 0.70
isSubrecordByFunction · 0.70

Calls 1

keysMethod · 0.80

Tested by

no test coverage detected