bitburner-src/utils/helpers/roundToTwo.ts
2018-07-08 20:17:48 -04:00

10 lines
262 B
TypeScript

/**
* Rounds a number to two decimal places.
* @param decimal A decimal value to trim to two places.
*/
export function roundToTwo(decimal: number) {
const leftShift: number = Math.round(parseInt(`${decimal}e+2`, 10));
return +(`${leftShift}e-2`);
}