blob: e19db789cad416fe6af777751b80c5a34b49f060 [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.toplaindate
description: The "toPlainDate" property of Temporal.PlainYearMonth.prototype
includes: [propertyHelper.js]
features: [Temporal]
---*/
assert.sameValue(
typeof Temporal.PlainYearMonth.prototype.toPlainDate,
"function",
"`typeof PlainYearMonth.prototype.toPlainDate` is `function`"
);
verifyProperty(Temporal.PlainYearMonth.prototype, "toPlainDate", {
writable: true,
enumerable: false,
configurable: true,
});