@quantlab/handsontable
Version:
Spreadsheet-like data grid editor that provides copy/paste functionality compatible with Excel/Google Docs
17 lines (11 loc) • 370 B
JavaScript
import {toNumber} from './../../helper/number';
import {ERROR_VALUE} from './../../error';
export const SYMBOL = '-';
export default function func(first, ...rest) {
const result = rest.reduce((acc, value) => acc - toNumber(value), toNumber(first));
if (isNaN(result)) {
throw Error(ERROR_VALUE);
}
return result;
}
func.SYMBOL = SYMBOL;