X-Git-Url: https://git.ladys.computer/Pisces/blobdiff_plain/f12d82b248269c7e370dafa3f30c76331548c850..d8b8bf6b37eb780a98bca3be06d2d98df4c83691:/object.test.js diff --git a/object.test.js b/object.test.js index cba44b9..aa1796a 100644 --- a/object.test.js +++ b/object.test.js @@ -1,11 +1,14 @@ -// ♓🌟 Piscēs ∷ object.test.js -// ==================================================================== -// -// Copyright © 2022–2023 Lady [@ Lady’s Computer]. -// -// This Source Code Form is subject to the terms of the Mozilla Public -// License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at . +// SPDX-FileCopyrightText: 2022, 2023, 2025 Lady +// SPDX-License-Identifier: MPL-2.0 +/** + * ⁌ ♓🌟 Piscēs ∷ object.js + * + * Copyright © 2022–2023, 2025 Lady [@ Ladys Computer]. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at . + */ import { assert, @@ -671,8 +674,8 @@ describe("frozenCopy", () => { it("[[Call]] does not copy properties on the prototype", () => { assert( - !("failure" in - frozenCopy(Object.create({ failure: undefined }))), + !("failure" + in frozenCopy(Object.create({ failure: undefined }))), ); });