blob: b9fe480608fbf11801506ea600165c0f0f8cc040 [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-duration-prototype
description: The "prototype" property of Temporal.Duration
includes: [propertyHelper.js]
features: [Temporal]
---*/
assert.sameValue(typeof Temporal.Duration.prototype, "object");
assert.notSameValue(Temporal.Duration.prototype, null);
verifyProperty(Temporal.Duration, "prototype", {
writable: false,
enumerable: false,
configurable: false,
});