descriptor.js (707B)
1 // Copyright (C) 2017 André Bargull. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 esid: sec-intl.getcanonicallocales 6 description: > 7 Intl.getCanonicalLocales property attributes. 8 info: | 9 8.2.1 Intl.getCanonicalLocales (locales) 10 11 17 ECMAScript Standard Built-in Objects: 12 Every other data property described in clauses 18 through 26 and in 13 Annex B.2 has the attributes { [[Writable]]: true, [[Enumerable]]: false, 14 [[Configurable]]: true } unless otherwise specified. 15 includes: [propertyHelper.js] 16 ---*/ 17 18 verifyProperty(Intl, 'getCanonicalLocales', { 19 writable: true, 20 enumerable: false, 21 configurable: true, 22 }); 23 24 reportCompare(0, 0);