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