mirror of
https://github.com/unraid/api.git
synced 2026-04-26 01:08:53 -05:00
10 lines
232 B
TypeScript
10 lines
232 B
TypeScript
/*!
|
|
* Copyright 2019-2020 Lime Technology Inc. All rights reserved.
|
|
* Written by: Alexis Tyler
|
|
*/
|
|
|
|
/**
|
|
* Add all numbers in array together.
|
|
*/
|
|
export const addTogether = (array: number[]) => array.reduce((a, b) => (a + b), 0);
|