blob: 587c2b97130e0fbfb796cf7921f83a273f5f09d7 [file] [log] [blame]
// Copyright (C) 2021 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-temporal.plainyearmonth.prototype.tostring
description: The "toString" property of Temporal.PlainYearMonth.prototype
includes: [propertyHelper.js]
features: [Temporal]
---*/
assert.sameValue(
typeof Temporal.PlainYearMonth.prototype.toString,
"function",
"`typeof PlainYearMonth.prototype.toString` is `function`"
);
verifyProperty(Temporal.PlainYearMonth.prototype, "toString", {
writable: true,
enumerable: false,
configurable: true,
});