blob: 403aee27f389f2c32c2d8da7beffa7e23614399f [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.trimStart
description: >
String.prototype.trimStart.name is "trimStart".
info: >
String.prototype.trimStart ( )
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.trimStart]
---*/
verifyProperty(String.prototype.trimStart, "name", {
value: "trimStart",
enumerable: false,
writable: false,
configurable: true,
});