Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
enzostvs
/
hub-api-playground
like
79
Running
on
CPU Upgrade
App
Files
Files
Community
4
Fetching metadata from the HF Docker repository...
03ce1cf
hub-api-playground
/
utils
/
index.ts
Esteves Enzo
init
5916048
over 1 year ago
raw
Copy download link
history
blame
Safe
201 Bytes
export
const
splitStringBracket = (
str
:
string
):
string
[] => {
// Split string by bracket but keep the bracket
const
result = str.
split
(
/(\{.*?\})/g
)
return
result.
filter
(
(
item
) =>
item !==
''
)
}