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