name.js (379B)
1 // Copyright (C) 2024 Jordan Harband. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 /*--- 4 description: Promise.try `name` property 5 includes: [propertyHelper.js] 6 features: [promise-try] 7 ---*/ 8 9 verifyProperty(Promise.try, "name", { 10 value: "try", 11 writable: false, 12 enumerable: false, 13 configurable: true 14 }); 15 16 reportCompare(0, 0);