+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;
+
+/** Negative zero. */
+export const NEGATIVE_ZERO = -0;
+