UNPKG

pure-fun

Version:

A collection of pure functions/helpers with 0 dependencies

6 lines (5 loc) 132 B
/** * Returns the sum/total for an array of numbers */ declare const total: (arr: number[]) => number; export default total;