mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 17:53:55 +01:00
10 lines
262 B
TypeScript
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`;
|
|
}
|