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

Function objEntries

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

Source from the content-addressed store, hash-verified

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][] {
47 return Object.entries(obj) as any;
48}
49export function objFromEntries<
50 E extends [KeyType, any][],
51 K extends E[number][0],

Callers 6

notifyUsersFunction · 0.90
moveStep2Function · 0.90
createNotificationsFunction · 0.90
step2Function · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected