blob: 0914840ec17010e1d706aa07d16e2270837c71be [file] [log] [blame]
// Copyright (C) 2017 Valerie Young. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-string.prototype.trimEnd
description: >
String.prototype.trimEnd.name is "trimEnd".
info: >
String.prototype.trimEnd ( )
17 ECMAScript Standard Built-in Objects:
Every built-in Function object, including constructors, that is not
identified as an anonymous function has a name property whose value
is a String.
Unless otherwise specified, the name property of a built-in Function
object, if it exists, has the attributes { [[Writable]]: false,
[[Enumerable]]: false, [[Configurable]]: true }.
includes: [propertyHelper.js]
features: [string-trimming, String.prototype.trimEnd]
---*/
verifyProperty(String.prototype.trimEnd, "name", {
value: "trimEnd",
enumerable: false,
writable: false,
configurable: true,
});