Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
huggingface
/
inf-playground-canvas
like
5
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
a76eef5
inf-playground-canvas
/
src
/
lib
/
utils
/
string.ts
Thomas G. Lopes
Checkpoints (#73)
7450ebd
unverified
7 months ago
raw
Copy download link
history
blame
125 Bytes
export
function
pluralize
(
word:
string
, count:
number
):
string
{
if
(count ===
1
) {
return
word;
}
return
word +
"s"
;
}