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 4c5b15a commit 04d4a54Copy full SHA for 04d4a54
1 file changed
README.md
@@ -12,13 +12,14 @@ npm i --save fast-querystring
12
13
- Parsed object does not have prototype methods
14
- Uses `&` separator as default
15
-- Supports only UTF-8
16
- Supports only input of type `string`
17
-- Key & value with length 0 is omitted by default
18
- - `foo=bar&hey` parses into `{foo: 'bar'}`
19
- Supports repeating keys in query string
20
- `foo=bar&foo=baz` parses into `{foo: ['bar', 'baz']}`
21
+### Differences
+- Key & value with length 0 is omitted by default
+ - `foo=bar&hey` parses into `{foo: 'bar'}`, but `node:querystring` returns `{foo: 'bar', hey: ''}`
22
+
23
### Usage
24
25
```javascript
0 commit comments