]> Lady’s Gitweb - Pisces/blobdiff - symbol.js
Minor doc changes to object.js & symbol.js
[Pisces] / symbol.js
index 2bd37173fea849be70108d4e8991eb6d08ad918c..d303aec60cca6a65fd42951189232b27656a68e5 100644 (file)
--- a/symbol.js
+++ b/symbol.js
@@ -1,18 +1,23 @@
-// ♓🌟 Piscēs ∷ symbol.js
-// ====================================================================
-//
-// Copyright © 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 <https://mozilla.org/MPL/2.0/>.
+// SPDX-FileCopyrightText: 2023, 2025 Lady <https://www.ladys.computer/about/#lady>
+// SPDX-License-Identifier: MPL-2.0
+/**
+ * ⁌ ♓🧩 Piscēs ∷ symbol.js
+ *
+ * Copyright © 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 <https://mozilla.org/MPL/2.0/>.
+ */
 
 import { createCallableFunction } from "./function.js";
 
+const PISCĒS = "♓🧩 Piscēs";
+
 /**
  * Returns the description for the provided symbol.
  *
- * ※ This is effectively an alias for the `Symbol::description`
+ * ※ This is effectively an alias for the `Symbol::description´
  * getter.
  *
  * ☡ This function throws if the provided argument is not a symbol.
@@ -25,10 +30,10 @@ export const getSymbolDescription = createCallableFunction(
 /**
  * Returns a string representation of the provided symbol.
  *
- * ※ Use `getSymbolDescription` instead if you just want the text
+ * ※ Use `getSymbolDescription´ instead if you just want the text
  * description of a symbol.
  *
- * ※ This is effectively an alias for the `Symbol::toString`.
+ * ※ This is effectively an alias for the `Symbol::toString´.
  *
  * ☡ This function throws if the provided argument is not a symbol.
  */
@@ -40,10 +45,10 @@ export const symbolToString = createCallableFunction(
 /**
  * Returns the value of the provided symbol.
  *
- * ※ This is effectively an alias for the `Symbol::valueOf`.
+ * ※ This is effectively an alias for the `Symbol::valueOf´.
  *
  * ☡ This function throws if the provided argument is not a symbol and
- * does not have a `[[SymbolData]]` slot.
+ * does not have a `[[SymbolData]]´ slot.
  */
 export const symbolValue = createCallableFunction(
   Symbol.prototype.valueOf,
This page took 0.29372 seconds and 4 git commands to generate.