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