MCPcopy Create free account
hub / github.com/DeepNotesApp/DeepNotes / objValues

Function objValues

packages/@stdlib/misc/src/utils.ts:41–43  ·  view source on GitHub ↗
(obj: T)

Source from the content-addressed store, hash-verified

39 return Object.keys(obj) as any;
40}
41export function objValues<T extends object>(obj: T): T[keyof T][] {
42 return Object.values(obj);
43}
44export function objEntries<V extends T[keyof T], T extends object = any>(
45 obj: T,
46): [Extract<keyof T, string>, V][] {

Callers 1

allAsyncPropsFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected