kokofixcomputers's picture
Duplicate from huggingchat/chat-ui
8b7ec8f
raw
history blame contribute delete
89 Bytes
export function sum(nums: number[]): number {
return nums.reduce((a, b) => a + b, 0);
}