+// SPDX-FileCopyrightText: 2022, 2023, 2025 Lady <https://www.ladys.computer/about/#lady>
+// SPDX-License-Identifier: MPL-2.0
+/**
+ * ⁌ ♓🧩 Piscēs ∷ value.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 <https://mozilla.org/MPL/2.0/>.
+ */
+
+const PISCĒS = "♓🧩 Piscēs";
+
+export const {
+ /** The welknown `@@asyncIterator´ symbol. */
+ asyncIterator: ASYNC_ITERATOR,
+
+ /** The welknown `@@hasInstance´ symbol. */
+ hasInstance: HAS_INSTANCE,
+
+ /** The welknown `@@isConcatSpreadable´ symbol. */
+ isConcatSpreadable: IS_CONCAT_SPREADABLE,
+
+ /** The welknown `@@iterator´ symbol. */
+ iterator: ITERATOR,
+
+ /** The welknown `@@match´ symbol. */
+ match: MATCH,
+
+ /** The welknown `@@matchAll´ symbol. */
+ matchAll: MATCH_ALL,
+
+ /** The welknown `@@replace´ symbol. */
+ replace: REPLACE,
+
+ /** The welknown `@@species´ symbol. */
+ species: SPECIES,
+
+ /** The welknown `@@split´ symbol. */
+ split: SPLIT,
+
+ /** The welknown `@@toPrimitive´ symbol. */
+ toPrimitive: TO_PRIMITIVE,
+
+ /** The welknown `@@toStringTag´ symbol. */
+ toStringTag: TO_STRING_TAG,
+
+ /** The welknown `@@unscopables´ symbol. */
+ unscopables: UNSCOPABLES,
+} = Symbol;
+
+export const {
+ /**
+ * ln(10).
+ *
+ * ※ This is an alias for `Math.LN10´.
+ */
+ LN10: LN_10,
+
+ /**
+ * ln(2).
+ *
+ * ※ This is an alias for `Math.LN2´.
+ */
+ LN2: LN_2,
+
+ /**
+ * log10(e).
+ *
+ * ※ This is an alias for `Math.LOG10E´.
+ */
+ LOG10E: LOG10_𝑒,
+
+ /**
+ * log2(e).
+ *
+ * ※ This is an alias for `Math.LOG2E´.
+ */
+ LOG2E: LOG2_𝑒,
+
+ /**
+ * sqrt(½).
+ *
+ * ※ This is an alias for `Math.SQRT1_2´.
+ */
+ SQRT1_2: RECIPROCAL_SQRT_2,
+
+ /**
+ * sqrt(2).
+ *
+ * ※ This is an alias for `Math.SQRT2´.
+ */
+ SQRT2: SQRT_2,
+
+ /**
+ * The mathematical constant 𝑒.
+ *
+ * ※ This is an alias for `Math.E´.
+ */
+ E: 𝑒,
+
+ /**
+ * The mathematical constant 𝜋.
+ *
+ * ※ This is an alias for `Math.PI´.
+ */
+ PI: 𝜋,
+} = Math;
+
+export const {
+ /**
+ * The largest number value less than infinity.
+ *
+ * ※ This is an alias for `Number.MAX_VALUE´.
+ */
+ MAX_VALUE: MAXIMUM_NUMBER,
+
+ /**
+ * 2^53 - 1.
+ *
+ * ※ This is an alias for `Number.MAX_SAFE_INTEGER´.
+ */
+ MAX_SAFE_INTEGER: MAXIMUM_SAFE_INTEGRAL_NUMBER,
+
+ /**
+ * The smallest number value greater than negative infinity.
+ *
+ * ※ This is an alias for `Number.MIN_VALUE´.
+ */
+ MIN_VALUE: MINIMUM_NUMBER,
+
+ /**
+ * -(2^53 - 1).
+ *
+ * ※ This is an alias for `Number.MIN_SAFE_INTEGER´.
+ */
+ MIN_SAFE_INTEGER: MINIMUM_SAFE_INTEGRAL_NUMBER,
+
+ /**
+ * Negative infinity.
+ *
+ * ※ This is an alias for `Number.NEGATIVE_INFINITY´.
+ */
+ NEGATIVE_INFINITY,
+
+ /**
+ * Nan.
+ *
+ * ※ This is an alias for `Number.NaN´.
+ */
+ NaN: NAN,
+
+ /**
+ * Positive infinity.
+ *
+ * ※ This is an alias for `Number.POSITIVE_INFINITY´.
+ */
+ POSITIVE_INFINITY,
+
+ /**
+ * The difference between 1 and the smallest number greater than 1.
+ *
+ * ※ This is an alias for `Number.EPSILON´.
+ */
+ EPSILON: 𝜀,
+} = Number;