qmwts 1.1.19 → 1.1.20

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.
@@ -8,7 +8,8 @@ exports.default = {
8
8
  },
9
9
  generateURLSearchParams: function (data) {
10
10
  if (data === void 0) { data = {}; }
11
- return generate(data, new URLSearchParams());
11
+ var a = new URLSearchParams();
12
+ return generate(data, a);
12
13
  },
13
14
  };
14
15
  function generate(data, params) {
@@ -23,7 +24,6 @@ function generate(data, params) {
23
24
  else if (isValidValue(value))
24
25
  params.append(key, value);
25
26
  }
26
- console.log(params);
27
27
  return params;
28
28
  }
29
29
  function isValidValue(value) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qmwts",
3
- "version": "1.1.19",
3
+ "version": "1.1.20",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",