Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
mithril-security/blind_chat
smjain
/
flant5_local
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
flant5_local
/
src
/
lib
/
utils
/
sum.ts
lauro1
test
faca43f
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
89 Bytes
export
function
sum
(
nums:
number
[]
):
number
{
return
nums.
reduce
(
(
a, b
) =>
a + b,
0
);
}