Array.from-descriptor.js (367B)
1 // Copyright 2015 Microsoft Corporation. All rights reserved. 2 // This code is governed by the license found in the LICENSE file. 3 4 /*--- 5 description: Testing descriptor property of Array.from 6 includes: [propertyHelper.js] 7 esid: sec-array.from 8 ---*/ 9 10 verifyProperty(Array, "from", { 11 writable: true, 12 enumerable: false, 13 configurable: true 14 }); 15 16 reportCompare(0, 0);