blob: 20e2a01b093816d489b280236cf7233522e77493 [file] [log] [blame]
function test() {
return typeof String.prototype.repeat === 'function'
&& "foo".repeat(3) === "foofoofoo";
}
if (!test())
throw new Error("Test failed");