Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
aproli90
/
bolt.diy
like
2
Running
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
f237276
bolt.diy
/
app
/
utils
/
unreachable.ts
aproli90
Upload 289 files
2e1ab99
verified
about 2 months ago
raw
Copy download link
history
blame
Safe
102 Bytes
export
function
unreachable
(
message:
string
):
never
{
throw
new
Error
(
`Unreachable:
${message}
`
);
}