blob: cadaa308e816b83305f76c3fef023c124288ca67 [file] [edit]
function test() {
let count = 0;
for (let i = 0; i < 1e4; ++i)
count += new Intl.NumberFormat("en-US").format !== undefined;
return count;
}
const result = test();
if (result !== 1e4)
throw new Error("Bad result: " + result);