blob: fb763061d6d3214e5f9c7bd0d8d09e4cea0e71bf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
export function test() {
const precision = 10;
try {
parseFloat(0 .toPrecision(precision) + "1");
} catch (exception) {
throw new Error("Test Failed", exception);
}
testDone(import.meta.url);
}
//# sourceMappingURL=http://localhost:8080/number-literal-bug.js.map
|