@wzyjs/utils 0.2.53 → 0.2.55

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wzyjs/utils",
3
- "version": "0.2.53",
3
+ "version": "0.2.55",
4
4
  "description": "description",
5
5
  "author": "wzy",
6
6
  "scripts": {
@@ -17,7 +17,7 @@
17
17
  "types": "./dist/browser.d.ts"
18
18
  },
19
19
  "./node": {
20
- "import": "./dist/node.cjs.js",
20
+ "import": "./dist/node.esm.js",
21
21
  "require": "./dist/node.cjs.js",
22
22
  "types": "./dist/node.d.ts"
23
23
  }
@@ -67,5 +67,5 @@
67
67
  "@types/nodemailer": "^6.4.7",
68
68
  "@types/papaparse": "^5.3.15"
69
69
  },
70
- "gitHead": "21d3520e2966c7ee6bcb713f5eac54014e272407"
70
+ "gitHead": "0d197525f11d492c132b2ae376ab33b883237c1c"
71
71
  }
@@ -1,8 +0,0 @@
1
- export declare const url2Params: (url?: string) => {
2
- [key: string]: string;
3
- };
4
- export declare const params2Url: (params: {
5
- [key: string]: any;
6
- }) => string;
7
- export declare const setUrlParams: (key: string, value: any, keepName: string) => void;
8
- export declare const urlGetPath: (url?: string) => string;