Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/DeepNotesApp/DeepNotes
/ objKeys
Function
objKeys
packages/@stdlib/misc/src/utils.ts:38–40 ·
view source on GitHub ↗
(obj: T)
Source
from the content-addressed store, hash-verified
36
}
37
38
export
function
objKeys<T extends object>(obj: T): Extract<keyof T, string>[] {
39
return
Object.keys(obj) as any;
40
}
41
export
function
objValues<T extends object>(obj: T): T[keyof T][] {
42
return
Object.values(obj);
43
}
Callers
1
allAsyncProps
Function · 0.90
Calls
no outgoing calls
Tested by
no test coverage detected