bitburner-src/utils/helpers/roundToTwo.ts
2021-09-04 19:09:30 -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): number {
const leftShift: number = Math.round(parseFloat(`${decimal}e+2`));
return +`${leftShift}e-2`;
}