2024-07-18 17:30:09 +02:00

20 lines
447 B
JavaScript

// Copyright (C) 2024 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-regexp.escape
description: >
RegExp.escape.length property descriptor
info: |
17 ECMAScript Standard Built-in Objects
includes: [propertyHelper.js]
features: [RegExp.escape]
---*/
verifyProperty(RegExp.escape, "length", {
value: 1,
writable: false,
enumerable: false,
configurable: true
});