@vxrn/query-string 1.27.0 → 1.27.1-1789509973946
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/cjs/index.cjs +46 -48
- package/dist/cjs/index.native.cjs +35 -0
- package/dist/cjs/index.native.js +17 -25
- package/dist/cjs/index.native.js.map +1 -1
- package/dist/esm/index.js +31 -30
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/index.mjs +31 -30
- package/dist/esm/index.mjs.map +1 -1
- package/dist/esm/index.native.js +4 -1
- package/dist/esm/index.native.js.map +1 -1
- package/package.json +2 -2
- package/types/index.d.ts +2 -2
- package/types/index.d.ts.map +1 -1
- package/types/index.native.d.ts.map +1 -1
package/dist/cjs/index.cjs
CHANGED
|
@@ -3,61 +3,59 @@ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
|
3
3
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
4
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
5
|
var __export = (target, all) => {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
6
|
+
for (var name in all) __defProp(target, name, {
|
|
7
|
+
get: all[name],
|
|
8
|
+
enumerable: true
|
|
9
|
+
});
|
|
10
10
|
};
|
|
11
11
|
var __copyProps = (to, from, except, desc) => {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
+
for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
|
|
14
|
+
get: () => from[key],
|
|
15
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
16
|
+
});
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
19
19
|
};
|
|
20
|
-
var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
|
|
21
|
-
value: true
|
|
22
|
-
}), mod);
|
|
20
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
23
21
|
var index_exports = {};
|
|
24
22
|
__export(index_exports, {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
23
|
+
default: () => index_default,
|
|
24
|
+
parse: () => parse,
|
|
25
|
+
stringify: () => stringify
|
|
28
26
|
});
|
|
29
27
|
module.exports = __toCommonJS(index_exports);
|
|
30
|
-
const parse = queryString => {
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
28
|
+
const parse = (queryString) => {
|
|
29
|
+
const params = new URLSearchParams(queryString);
|
|
30
|
+
const result = {};
|
|
31
|
+
params.forEach((value, key) => {
|
|
32
|
+
if (result[key]) {
|
|
33
|
+
if (Array.isArray(result[key])) {
|
|
34
|
+
;
|
|
35
|
+
result[key].push(value);
|
|
36
|
+
} else {
|
|
37
|
+
result[key] = [result[key], value];
|
|
38
|
+
}
|
|
39
|
+
} else {
|
|
40
|
+
result[key] = value;
|
|
41
|
+
}
|
|
42
|
+
});
|
|
43
|
+
return result;
|
|
46
44
|
};
|
|
47
|
-
const stringify = obj => {
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
45
|
+
const stringify = (obj) => {
|
|
46
|
+
const params = new URLSearchParams();
|
|
47
|
+
Object.entries(obj).forEach(([key, value]) => {
|
|
48
|
+
if (Array.isArray(value)) {
|
|
49
|
+
value.forEach((v) => {
|
|
50
|
+
params.append(key, v);
|
|
51
|
+
});
|
|
52
|
+
} else {
|
|
53
|
+
params.append(key, value);
|
|
54
|
+
}
|
|
55
|
+
});
|
|
56
|
+
return params.toString();
|
|
59
57
|
};
|
|
60
58
|
var index_default = {
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
};
|
|
59
|
+
parse,
|
|
60
|
+
stringify
|
|
61
|
+
};
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var __create = Object.create;
|
|
4
|
+
var __defProp = Object.defineProperty;
|
|
5
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
6
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
7
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
8
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
9
|
+
var __export = (target, all) => {
|
|
10
|
+
for (var name in all) __defProp(target, name, {
|
|
11
|
+
get: all[name],
|
|
12
|
+
enumerable: true
|
|
13
|
+
});
|
|
14
|
+
};
|
|
15
|
+
var __copyProps = (to, from, except, desc) => {
|
|
16
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
17
|
+
for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
|
|
18
|
+
get: () => from[key],
|
|
19
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
return to;
|
|
23
|
+
};
|
|
24
|
+
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
25
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
|
|
26
|
+
value: mod,
|
|
27
|
+
enumerable: true
|
|
28
|
+
}) : target, mod));
|
|
29
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
30
|
+
var index_native_exports = {};
|
|
31
|
+
__export(index_native_exports, { default: () => index_native_default });
|
|
32
|
+
module.exports = __toCommonJS(index_native_exports);
|
|
33
|
+
var import_query_string = __toESM(require("query-string"));
|
|
34
|
+
__reExport(index_native_exports, require("query-string"), module.exports);
|
|
35
|
+
var index_native_default = import_query_string.default;
|
package/dist/cjs/index.native.js
CHANGED
|
@@ -7,39 +7,31 @@ var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
|
7
7
|
var __getProtoOf = Object.getPrototypeOf;
|
|
8
8
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
9
9
|
var __export = (target, all) => {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
10
|
+
for (var name in all) __defProp(target, name, {
|
|
11
|
+
get: all[name],
|
|
12
|
+
enumerable: true
|
|
13
|
+
});
|
|
14
14
|
};
|
|
15
15
|
var __copyProps = (to, from, except, desc) => {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
16
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
17
|
+
for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
|
|
18
|
+
get: () => from[key],
|
|
19
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
return to;
|
|
23
23
|
};
|
|
24
24
|
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
25
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
29
|
-
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
30
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
|
|
31
|
-
value: mod,
|
|
32
|
-
enumerable: true
|
|
25
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
|
|
26
|
+
value: mod,
|
|
27
|
+
enumerable: true
|
|
33
28
|
}) : target, mod));
|
|
34
|
-
var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
|
|
35
|
-
value: true
|
|
36
|
-
}), mod);
|
|
29
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
37
30
|
var index_native_exports = {};
|
|
38
|
-
__export(index_native_exports, {
|
|
39
|
-
default: () => index_native_default
|
|
40
|
-
});
|
|
31
|
+
__export(index_native_exports, { default: () => index_native_default });
|
|
41
32
|
module.exports = __toCommonJS(index_native_exports);
|
|
42
33
|
var import_query_string = __toESM(require("query-string"));
|
|
43
34
|
__reExport(index_native_exports, require("query-string"), module.exports);
|
|
44
35
|
var index_native_default = import_query_string.default;
|
|
36
|
+
|
|
45
37
|
//# sourceMappingURL=index.native.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["
|
|
1
|
+
{"version":3,"file":"index.native.js","names":[],"sources":["cjs/index.native.js"],"sourcesContent":["\"use strict\";\nvar __create = Object.create;\nvar __defProp = Object.defineProperty;\nvar __getOwnPropDesc = Object.getOwnPropertyDescriptor;\nvar __getOwnPropNames = Object.getOwnPropertyNames;\nvar __getProtoOf = Object.getPrototypeOf;\nvar __hasOwnProp = Object.prototype.hasOwnProperty;\nvar __export = (target, all) => {\n for (var name in all)\n __defProp(target, name, { get: all[name], enumerable: true });\n};\nvar __copyProps = (to, from, except, desc) => {\n if (from && typeof from === \"object\" || typeof from === \"function\") {\n for (let key of __getOwnPropNames(from))\n if (!__hasOwnProp.call(to, key) && key !== except)\n __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });\n }\n return to;\n};\nvar __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, \"default\"), secondTarget && __copyProps(secondTarget, mod, \"default\"));\nvar __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(\n // If the importer is in node compatibility mode or this is not an ESM\n // file that has been converted to a CommonJS file using a Babel-\n // compatible transform (i.e. \"__esModule\" has not been set), then set\n // \"default\" to the CommonJS \"module.exports\" for node compatibility.\n isNodeMode || !mod || !mod.__esModule ? __defProp(target, \"default\", { value: mod, enumerable: true }) : target,\n mod\n));\nvar __toCommonJS = (mod) => __copyProps(__defProp({}, \"__esModule\", { value: true }), mod);\nvar index_native_exports = {};\n__export(index_native_exports, {\n default: () => index_native_default\n});\nmodule.exports = __toCommonJS(index_native_exports);\nvar import_query_string = __toESM(require(\"query-string\"));\n__reExport(index_native_exports, require(\"query-string\"), module.exports);\nvar index_native_default = import_query_string.default;\n//# sourceMappingURL=index.native.js.map\n"],"mappings":";;;AACA,IAAI,WAAW,OAAO;AACtB,IAAI,YAAY,OAAO;AACvB,IAAI,mBAAmB,OAAO;AAC9B,IAAI,oBAAoB,OAAO;AAC/B,IAAI,eAAe,OAAO;AAC1B,IAAI,eAAe,OAAO,UAAU;AACpC,IAAI,YAAY,QAAQ,QAAQ;CAC9B,KAAK,IAAI,QAAQ,KACf,UAAU,QAAQ,MAAM;EAAE,KAAK,IAAI;EAAO,YAAY;CAAK,CAAC;AAChE;AACA,IAAI,eAAe,IAAI,MAAM,QAAQ,SAAS;CAC5C,IAAI,QAAQ,OAAO,SAAS,YAAY,OAAO,SAAS,YAAY;EAClE,KAAK,IAAI,OAAO,kBAAkB,IAAI,GACpC,IAAI,CAAC,aAAa,KAAK,IAAI,GAAG,KAAK,QAAQ,QACzC,UAAU,IAAI,KAAK;GAAE,WAAW,KAAK;GAAM,YAAY,EAAE,OAAO,iBAAiB,MAAM,GAAG,MAAM,KAAK;EAAW,CAAC;CACvH;CACA,OAAO;AACT;AACA,IAAI,cAAc,QAAQ,KAAK,kBAAkB,YAAY,QAAQ,KAAK,SAAS,GAAG,gBAAgB,YAAY,cAAc,KAAK,SAAS;AAC9I,IAAI,WAAW,KAAK,YAAY,YAAY,SAAS,OAAO,OAAO,SAAS,aAAa,GAAG,CAAC,IAAI,CAAC,GAAG,YAKnG,cAAc,CAAC,OAAO,CAAC,IAAI,aAAa,UAAU,QAAQ,WAAW;CAAE,OAAO;CAAK,YAAY;AAAK,CAAC,IAAI,QACzG,GACF;AACA,IAAI,gBAAgB,QAAQ,YAAY,UAAU,CAAC,GAAG,cAAc,EAAE,OAAO,KAAK,CAAC,GAAG,GAAG;AACzF,IAAI,uBAAuB,CAAC;AAC5B,SAAS,sBAAsB,EAC7B,eAAe,qBACjB,CAAC;AACD,OAAO,UAAU,aAAa,oBAAoB;AAClD,IAAI,sBAAsB,QAAQ,QAAQ,cAAc,CAAC;AACzD,WAAW,sBAAsB,QAAQ,cAAc,GAAG,OAAO,OAAO;AACxE,IAAI,uBAAuB,oBAAoB"}
|
package/dist/esm/index.js
CHANGED
|
@@ -1,36 +1,37 @@
|
|
|
1
|
-
const parse = queryString => {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
1
|
+
const parse = (queryString) => {
|
|
2
|
+
const params = new URLSearchParams(queryString);
|
|
3
|
+
const result = {};
|
|
4
|
+
params.forEach((value, key) => {
|
|
5
|
+
if (result[key]) {
|
|
6
|
+
if (Array.isArray(result[key])) {
|
|
7
|
+
;
|
|
8
|
+
result[key].push(value);
|
|
9
|
+
} else {
|
|
10
|
+
result[key] = [result[key], value];
|
|
11
|
+
}
|
|
12
|
+
} else {
|
|
13
|
+
result[key] = value;
|
|
14
|
+
}
|
|
15
|
+
});
|
|
16
|
+
return result;
|
|
17
17
|
};
|
|
18
|
-
const stringify = obj => {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
18
|
+
const stringify = (obj) => {
|
|
19
|
+
const params = new URLSearchParams();
|
|
20
|
+
Object.entries(obj).forEach(([key, value]) => {
|
|
21
|
+
if (Array.isArray(value)) {
|
|
22
|
+
value.forEach((v) => {
|
|
23
|
+
params.append(key, v);
|
|
24
|
+
});
|
|
25
|
+
} else {
|
|
26
|
+
params.append(key, value);
|
|
27
|
+
}
|
|
28
|
+
});
|
|
29
|
+
return params.toString();
|
|
30
30
|
};
|
|
31
31
|
var index_default = {
|
|
32
|
-
|
|
33
|
-
|
|
32
|
+
parse,
|
|
33
|
+
stringify
|
|
34
34
|
};
|
|
35
|
+
|
|
35
36
|
export { index_default as default, parse, stringify };
|
|
36
37
|
//# sourceMappingURL=index.js.map
|
package/dist/esm/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"file":"index.js","names":[],"sources":["esm/index.js"],"sourcesContent":["const parse = (queryString) => {\n const params = new URLSearchParams(queryString);\n const result = {};\n params.forEach((value, key) => {\n if (result[key]) {\n if (Array.isArray(result[key])) {\n ;\n result[key].push(value);\n } else {\n result[key] = [result[key], value];\n }\n } else {\n result[key] = value;\n }\n });\n return result;\n};\nconst stringify = (obj) => {\n const params = new URLSearchParams();\n Object.entries(obj).forEach(([key, value]) => {\n if (Array.isArray(value)) {\n value.forEach((v) => {\n params.append(key, v);\n });\n } else {\n params.append(key, value);\n }\n });\n return params.toString();\n};\nvar index_default = {\n parse,\n stringify\n};\nexport {\n index_default as default,\n parse,\n stringify\n};\n//# sourceMappingURL=index.js.map\n"],"mappings":";AAAA,MAAM,SAAS,gBAAgB;CAC7B,MAAM,SAAS,IAAI,gBAAgB,WAAW;CAC9C,MAAM,SAAS,CAAC;CAChB,OAAO,SAAS,OAAO,QAAQ;EAC7B,IAAI,OAAO,MAAM;GACf,IAAI,MAAM,QAAQ,OAAO,IAAI,GAAG;IAC9B;IACA,OAAO,IAAI,CAAC,KAAK,KAAK;GACxB,OAAO;IACL,OAAO,OAAO,CAAC,OAAO,MAAM,KAAK;GACnC;EACF,OAAO;GACL,OAAO,OAAO;EAChB;CACF,CAAC;CACD,OAAO;AACT;AACA,MAAM,aAAa,QAAQ;CACzB,MAAM,SAAS,IAAI,gBAAgB;CACnC,OAAO,QAAQ,GAAG,CAAC,CAAC,SAAS,CAAC,KAAK,WAAW;EAC5C,IAAI,MAAM,QAAQ,KAAK,GAAG;GACxB,MAAM,SAAS,MAAM;IACnB,OAAO,OAAO,KAAK,CAAC;GACtB,CAAC;EACH,OAAO;GACL,OAAO,OAAO,KAAK,KAAK;EAC1B;CACF,CAAC;CACD,OAAO,OAAO,SAAS;AACzB;AACA,IAAI,gBAAgB;CAClB;CACA;AACF"}
|
package/dist/esm/index.mjs
CHANGED
|
@@ -1,36 +1,37 @@
|
|
|
1
|
-
const parse = queryString => {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
1
|
+
const parse = (queryString) => {
|
|
2
|
+
const params = new URLSearchParams(queryString);
|
|
3
|
+
const result = {};
|
|
4
|
+
params.forEach((value, key) => {
|
|
5
|
+
if (result[key]) {
|
|
6
|
+
if (Array.isArray(result[key])) {
|
|
7
|
+
;
|
|
8
|
+
result[key].push(value);
|
|
9
|
+
} else {
|
|
10
|
+
result[key] = [result[key], value];
|
|
11
|
+
}
|
|
12
|
+
} else {
|
|
13
|
+
result[key] = value;
|
|
14
|
+
}
|
|
15
|
+
});
|
|
16
|
+
return result;
|
|
17
17
|
};
|
|
18
|
-
const stringify = obj => {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
18
|
+
const stringify = (obj) => {
|
|
19
|
+
const params = new URLSearchParams();
|
|
20
|
+
Object.entries(obj).forEach(([key, value]) => {
|
|
21
|
+
if (Array.isArray(value)) {
|
|
22
|
+
value.forEach((v) => {
|
|
23
|
+
params.append(key, v);
|
|
24
|
+
});
|
|
25
|
+
} else {
|
|
26
|
+
params.append(key, value);
|
|
27
|
+
}
|
|
28
|
+
});
|
|
29
|
+
return params.toString();
|
|
30
30
|
};
|
|
31
31
|
var index_default = {
|
|
32
|
-
|
|
33
|
-
|
|
32
|
+
parse,
|
|
33
|
+
stringify
|
|
34
34
|
};
|
|
35
|
+
|
|
35
36
|
export { index_default as default, parse, stringify };
|
|
36
37
|
//# sourceMappingURL=index.mjs.map
|
package/dist/esm/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"file":"index.js","names":[],"sources":["esm/index.js"],"sourcesContent":["const parse = (queryString) => {\n const params = new URLSearchParams(queryString);\n const result = {};\n params.forEach((value, key) => {\n if (result[key]) {\n if (Array.isArray(result[key])) {\n ;\n result[key].push(value);\n } else {\n result[key] = [result[key], value];\n }\n } else {\n result[key] = value;\n }\n });\n return result;\n};\nconst stringify = (obj) => {\n const params = new URLSearchParams();\n Object.entries(obj).forEach(([key, value]) => {\n if (Array.isArray(value)) {\n value.forEach((v) => {\n params.append(key, v);\n });\n } else {\n params.append(key, value);\n }\n });\n return params.toString();\n};\nvar index_default = {\n parse,\n stringify\n};\nexport {\n index_default as default,\n parse,\n stringify\n};\n//# sourceMappingURL=index.js.map\n"],"mappings":";AAAA,MAAM,SAAS,gBAAgB;CAC7B,MAAM,SAAS,IAAI,gBAAgB,WAAW;CAC9C,MAAM,SAAS,CAAC;CAChB,OAAO,SAAS,OAAO,QAAQ;EAC7B,IAAI,OAAO,MAAM;GACf,IAAI,MAAM,QAAQ,OAAO,IAAI,GAAG;IAC9B;IACA,OAAO,IAAI,CAAC,KAAK,KAAK;GACxB,OAAO;IACL,OAAO,OAAO,CAAC,OAAO,MAAM,KAAK;GACnC;EACF,OAAO;GACL,OAAO,OAAO;EAChB;CACF,CAAC;CACD,OAAO;AACT;AACA,MAAM,aAAa,QAAQ;CACzB,MAAM,SAAS,IAAI,gBAAgB;CACnC,OAAO,QAAQ,GAAG,CAAC,CAAC,SAAS,CAAC,KAAK,WAAW;EAC5C,IAAI,MAAM,QAAQ,KAAK,GAAG;GACxB,MAAM,SAAS,MAAM;IACnB,OAAO,OAAO,KAAK,CAAC;GACtB,CAAC;EACH,OAAO;GACL,OAAO,OAAO,KAAK,KAAK;EAC1B;CACF,CAAC;CACD,OAAO,OAAO,SAAS;AACzB;AACA,IAAI,gBAAgB;CAClB;CACA;AACF"}
|
package/dist/esm/index.native.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"file":"index.native.js","names":[],"sources":["esm/index.native.js"],"sourcesContent":["import qs from \"query-string\";\nexport * from \"query-string\";\nvar index_native_default = qs;\nexport {\n index_native_default as default\n};\n//# sourceMappingURL=index.native.js.map\n"],"mappings":";;;;;AAEA,IAAI,uBAAuB"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vxrn/query-string",
|
|
3
|
-
"version": "1.27.
|
|
3
|
+
"version": "1.27.1-1789509973946",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"source": "src/index.ts",
|
|
6
6
|
"types": "./types/index.d.ts",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"query-string": "^9.1.0"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@tamagui/build": "
|
|
36
|
+
"@tamagui/build": "3.0.0-beta.1309.1"
|
|
37
37
|
},
|
|
38
38
|
"publishConfig": {
|
|
39
39
|
"access": "public"
|
package/types/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
export declare const parse: (queryString: string) => Record<string, string | string[]>;
|
|
2
2
|
export declare const stringify: (obj: Record<string, string | string[]>) => string;
|
|
3
3
|
declare const _default: {
|
|
4
|
-
parse:
|
|
5
|
-
stringify:
|
|
4
|
+
parse: typeof parse;
|
|
5
|
+
stringify: typeof stringify;
|
|
6
6
|
};
|
|
7
7
|
export default _default;
|
|
8
8
|
//# sourceMappingURL=index.d.ts.map
|
package/types/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":"AACA,eAAO,MAAM,KAAK,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":"AACA,eAAO,MAAM,KAAK,gBAAiB,MAAM,sCAiBxC,CAAA;AAGD,eAAO,MAAM,SAAS,QAAS,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC,WAc/D,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.native.d.ts","sourceRoot":"","sources":["../src/index.native.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,cAAc,CAAA;AAE7B,cAAc,cAAc,CAAA;
|
|
1
|
+
{"version":3,"file":"index.native.d.ts","sourceRoot":"","sources":["../src/index.native.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,cAAc,CAAA;AAE7B,cAAc,cAAc,CAAA;eAEb,EAAE"}
|