blob: 7545d537d29405885a9a2aa43f08a64def5fc1f3 [file] [log] [blame]
// Copyright (C) 2019 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-string.prototype.replaceall
description: >
String.prototype.replaceAll.length value and descriptor.
info: |
String.prototype.replaceAll ( searchValue, replaceValue )
17 ECMAScript Standard Built-in Objects
includes: [propertyHelper.js]
features: [String.prototype.replaceAll]
---*/
verifyProperty(String.prototype.replaceAll, 'length', {
value: 2,
enumerable: false,
writable: false,
configurable: true,
});