mirror of
https://github.com/tc39/test262.git
synced 2025-08-22 02:18:23 +02:00
18 lines
420 B
JavaScript
18 lines
420 B
JavaScript
// Copyright (C) 2024 Leo Balter. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
description: The property descriptor RegExp.escape
|
|
esid: sec-regexp.escape
|
|
info: |
|
|
17 ECMAScript Standard Built-in Objects
|
|
features: [RegExp.escape]
|
|
includes: [propertyHelper.js]
|
|
---*/
|
|
|
|
verifyProperty(RegExp, "escape", {
|
|
writable: true,
|
|
enumerable: false,
|
|
configurable: true
|
|
});
|