name.js (843B)
1 // Copyright (C) 2015 André Bargull. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 esid: sec-array.isarray 6 es6id: 22.1.2.2 7 description: > 8 Array.isArray.name is "isArray". 9 info: | 10 Array.isArray ( arg ) 11 12 17 ECMAScript Standard Built-in Objects: 13 Every built-in Function object, including constructors, that is not 14 identified as an anonymous function has a name property whose value 15 is a String. 16 17 Unless otherwise specified, the name property of a built-in Function 18 object, if it exists, has the attributes { [[Writable]]: false, 19 [[Enumerable]]: false, [[Configurable]]: true }. 20 includes: [propertyHelper.js] 21 ---*/ 22 23 verifyProperty(Array.isArray, "name", { 24 value: "isArray", 25 writable: false, 26 enumerable: false, 27 configurable: true 28 }); 29 30 reportCompare(0, 0);