prop-desc.js (442B)
1 // Copyright (C) 2024 Leo Balter. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 description: The property descriptor RegExp.escape 6 esid: sec-regexp.escape 7 info: | 8 17 ECMAScript Standard Built-in Objects 9 features: [RegExp.escape] 10 includes: [propertyHelper.js] 11 ---*/ 12 13 verifyProperty(RegExp, "escape", { 14 writable: true, 15 enumerable: false, 16 configurable: true 17 }); 18 19 reportCompare(0, 0);