-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
27 lines (18 loc) · 818 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
'use strict'
const cents = 5
const roundAccurately = (number, decimalPlaces) => Number(`${Math.round(`${number}e${decimalPlaces}`)}e-${decimalPlaces}`);
const roundTo5Cents = (value) => {
if (!isFinite(value)) throw new Error('Not supported value')
value = roundAccurately(value, 2)
const division = parseInt(value.toFixed(2).split('.')[1])%cents
if (division !== 0) {
if (value > 0) {
value = division >= Math.round(cents / 2) ? (value + ((cents - division) / 100)) : (value - division/100)
} else {
value = division >= Math.round(cents / 2) ? (value - ((cents - division) / 100)) : (value + division/100)
}
}
if (isNaN(value)) throw new Error('Not supported value')
return parseFloat(value.toFixed(2))
}
module.exports = roundTo5Cents