If the URL is simple, don't turn it into an object. + handle null

values properly
This commit is contained in:
Kuba Orlik 2021-11-22 14:50:37 +01:00
parent 492332802f
commit 5768ac93d9
1 changed files with 11 additions and 5 deletions

View File

@ -103,18 +103,24 @@ export class StolenDataEntry extends EventEmitter {
);
}
}
const searchParams = Object.fromEntries(
((url.searchParams as unknown) as {
entries: () => Iterable<[string, string]>;
}).entries()
);
if (typeof hash !== "object" && Object.keys(searchParams).length === 0) {
return value; // just a string;
}
const object = {
[Symbol.for("originalString")]: value, // so it doesn't appear raw in the table but can be easily retrieved later
host: url.host,
path: url.pathname,
...Object.fromEntries(
((url.searchParams as unknown) as {
entries: () => Iterable<[string, string]>;
}).entries()
),
searchParams,
...(hash === "" ? {} : typeof hash === "string" ? { hash } : hash),
};
return object;
} else if (value === null) {
return "null";
} else {
return value.toString();
}