reykit 1.0.54 → 1.0.56
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +4 -3
- package/dist/sys.d.ts +2 -6
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -27643,13 +27643,14 @@ const HE = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
27643
27643
|
PATTERN_IP: BE,
|
|
27644
27644
|
PATTERN_PHONE: qE,
|
|
27645
27645
|
PATTERN_URL: NE
|
|
27646
|
-
}, Symbol.toStringTag, { value: "Module" })), GE =
|
|
27646
|
+
}, Symbol.toStringTag, { value: "Module" })), GE = 1;
|
|
27647
27647
|
function XE() {
|
|
27648
|
-
return
|
|
27648
|
+
return 2;
|
|
27649
27649
|
}
|
|
27650
27650
|
const QE = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
27651
27651
|
__proto__: null,
|
|
27652
|
-
|
|
27652
|
+
test: GE,
|
|
27653
|
+
testFunc: XE
|
|
27653
27654
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
27654
27655
|
class VE {
|
|
27655
27656
|
/**
|
package/dist/sys.d.ts
CHANGED
|
@@ -4,9 +4,5 @@
|
|
|
4
4
|
* @Contact : reyxbo@163.com
|
|
5
5
|
* @Explain : System methods.
|
|
6
6
|
*/
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
*
|
|
10
|
-
* @returns Environment dictionary
|
|
11
|
-
*/
|
|
12
|
-
export declare function getEnv(): Record<string, string>;
|
|
7
|
+
export declare const test = 1;
|
|
8
|
+
export declare function testFunc(): number;
|