in internal/qs/stringify.ts [53:63]
function is_non_nullish_primitive(
v: unknown,
): v is string | number | boolean | symbol | bigint {
return (
typeof v === "string" ||
typeof v === "number" ||
typeof v === "boolean" ||
typeof v === "symbol" ||
typeof v === "bigint"
);
}