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