mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 09:43:54 +01:00
10 lines
268 B
TypeScript
10 lines
268 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`);
|
|
}
|