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