Skip to content

Commit

Permalink
Daily removal of unused Flow suppressions
Browse files Browse the repository at this point in the history
Reviewed By: mroch

Differential Revision: D42799861

fbshipit-source-id: f97ea3f4a4af75588d235285abfbb7b879d742f4
  • Loading branch information
generatedunixname89002005287564 authored and facebook-github-bot committed Jan 27, 2023
1 parent e32e7e7 commit 11919a0
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion runtime/shared/intlNumUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,6 @@ function _roundNumber(valueParam: number, decimalsParam?: number): string {
const decimals = decimalsParam == null ? 0 : decimalsParam;
const pow = Math.pow(10, decimals);
let value: number | string = valueParam;
// $FlowFixMe[unsafe-addition]
// $FlowFixMe[unsafe-arithmetic]
value = Math.round(value * pow) / pow;
value += '';
Expand Down

0 comments on commit 11919a0

Please sign in to comment.