blob: 74832dfeef4aa82623ddd69c616a17cc7216c259 [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: >
Property type and descriptor.
info: |
String.prototype.replaceAll ( searchValue, replaceValue )
17 ECMAScript Standard Built-in Objects
includes: [propertyHelper.js]
features: [String.prototype.replaceAll]
---*/
assert.sameValue(
typeof String.prototype.replaceAll,
'function',
'`typeof String.prototype.replaceAll` is `function`'
);
verifyProperty(String.prototype, 'replaceAll', {
enumerable: false,
writable: true,
configurable: true,
});