UNPKG

@quantlab/handsontable

Version:

Spreadsheet-like data grid editor that provides copy/paste functionality compatible with Excel/Google Docs

8 lines (7 loc) 174 B
export default function absRound (number) { if (number < 0) { return Math.round(-1 * number) * -1; } else { return Math.round(number); } }