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

Function objFromEntries

packages/@stdlib/misc/src/utils.ts:49–55  ·  view source on GitHub ↗
(entries: E)

Source from the content-addressed store, hash-verified

47 return Object.entries(obj) as any;
48}
49export function objFromEntries<
50 E extends [KeyType, any][],
51 K extends E[number][0],
52 V extends E[number][1],
53>(entries: E): Record<K, V> {
54 return Object.fromEntries(entries) as any;
55}
56
57export function isPromiseLike(value: any): value is PromiseLike<any> {
58 return (

Callers 15

_hmgetRemoteMethod · 0.90
insertMethod · 0.90
deleteMethod · 0.90
namedPromisesFunction · 0.90
objectifyPromisesFunction · 0.90
objectifyPromiseResultsFunction · 0.90
rotateKeysStep1Function · 0.90
changeUserRoleStep1Function · 0.90
removeUserStep1Function · 0.90
acceptStep1Function · 0.90
rejectStep1Function · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected