mirror of
https://github.com/tc39/test262.git
synced 2025-06-01 12:40:30 +02:00
20 lines
447 B
JavaScript
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
|
|
});
|