Updates
This commit is contained in:
parent
c4e65a34db
commit
26a29ed741
@ -33,6 +33,8 @@ function serializeQuery(query) {
|
|||||||
queryArr.push(`${key}=${encodeURIComponent(String(jsonStr))}`);
|
queryArr.push(`${key}=${encodeURIComponent(String(jsonStr))}`);
|
||||||
} else if (typeof value === "string" || typeof value === "number") {
|
} else if (typeof value === "string" || typeof value === "number") {
|
||||||
queryArr.push(`${key}=${encodeURIComponent(value)}`);
|
queryArr.push(`${key}=${encodeURIComponent(value)}`);
|
||||||
|
} else {
|
||||||
|
queryArr.push(`${key}=${String(value)}`);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@moduletrace/datasquirel",
|
"name": "@moduletrace/datasquirel",
|
||||||
"version": "3.2.4",
|
"version": "3.2.5",
|
||||||
"description": "Cloud-based SQL data management tool",
|
"description": "Cloud-based SQL data management tool",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"bin": {
|
"bin": {
|
||||||
|
Loading…
Reference in New Issue
Block a user