haikuwebkit/JSTests/es6/Array_static_methods_Array[...

11 lines
203 B
JavaScript

function test() {
var prop = Object.getOwnPropertyDescriptor(Array, Symbol.species);
return 'get' in prop && Array[Symbol.species] === Array;
}
if (!test())
throw new Error("Test failed");