We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f4dd04 commit 950d7f2Copy full SHA for 950d7f2
README.md
@@ -22,7 +22,8 @@ Serialization uses
22
which encodes most non-alphanumeric characters.
23
24
- The primitive types `string`, `number`, and `bigint` are serialized using `.toString()`.
25
-- The primitive `boolean` type is serialized using `.toString()` to `'true'` or `'false'`.
+- The primitive `boolean` type is serialized using `.toString()`,
26
+ e.g., `{ foo: true, bar: false }` serializes to `foo=true&bar=false`.
27
- The primitive `null` and `undefined` values are removed,
28
e.g., `{ foo: null, bar: undefined, baz: 1 }` serializes to `baz=1`.
29
- `Date` objects are detected and serialized using `Date.toISOString()`.
0 commit comments