Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
huggingchat/chat-ui
alexkueck
/
HF_Chat_LI_last
like
0
Paused
App
Files
Files
Fetching metadata from the HF Docker repository...
main
HF_Chat_LI_last
/
src
/
lib
/
utils
/
sum.ts
Alexandra Kueck
Duplicate from huggingchat/chat-ui
12532f1
over 2 years ago
raw
Copy download link
history
blame
Safe
89 Bytes
export
function
sum
(
nums:
number
[]
):
number
{
return
nums.
reduce
(
(
a, b
) =>
a + b,
0
);
}