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 1ecb026 commit c0300dcCopy full SHA for c0300dc
README.md
@@ -21,7 +21,7 @@ Serialization uses
21
[`URLSearchParams.toString()`](https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams/toString#return_value)
22
which encodes most non-alphanumeric characters.
23
24
-- The primitive types of `strings`, `number`, and `bigint` are serialized using `.toString()`.
+- The primitive types `string`, `number`, and `bigint` are serialized using `.toString()`.
25
- The primitive `boolean` type is serialized using `.toString()` to `'true'` or `'false'`.
26
- The primitive `null` and `undefined` values are removed,
27
e.g., `{ foo: null, bar: undefined, baz: 1 }` serializes to `baz=1`.
0 commit comments