blob: c2cdf3fda141de065c09c565f36ba4984af6f46d [file] [log] [blame]
function test() {
return typeof String.prototype.endsWith === 'function'
&& "foobar".endsWith("bar");
}
if (!test())
throw new Error("Test failed");