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