UNPKG

mongoku

Version:

[![CI](https://github.com/huggingface/Mongoku/actions/workflows/ci.yml/badge.svg)](https://github.com/huggingface/Mongoku/actions/workflows/ci.yml)

11 lines (10 loc) 166 B
/** * Sum an array of numbers */ export function sum(numbers: number[]): number { let total = 0; for (const num of numbers) { total += num; } return total; }