Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
huggingface
/
inference-playground
like
186
Running
on
CPU Upgrade
App
Files
Files
Community
11
Fetching metadata from the HF Docker repository...
0ff4ef8
inference-playground
/
src
/
lib
/
utils
/
object.ts
Thomas G. Lopes
add snippets
b924465
4 months ago
raw
Copy download link
history
blame
122 Bytes
// typed Object.keys
export
function
keys<T
extends
object
>(
o
: T): (keyof T)[] {
return
Object
.
keys
(o)
as
(keyof T)[];
}