Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
huggingface
/
inference-playground
like
147
Running
App
Files
Files
Community
5
Fetching metadata from the HF Docker repository...
a379843
inference-playground
/
src
/
lib
/
utils
/
object.ts
Thomas G. Lopes
add snippets
b924465
about 1 month 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)[];
}