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 eb74178 commit 622d539Copy full SHA for 622d539
1 file changed
README.md
@@ -8,6 +8,18 @@ Fast query-string parser to replace the deprecated `node:querystring` parse func
8
npm i --save fast-querystring
9
```
10
11
+### Features
12
+
13
+- Uses `&` separator as default
14
+- Removes fragment from string
15
+ - `foo=bar#hello=world` parses into `{foo: 'bar'}`
16
+- Supports only UTF-8
17
+- Supports only input of type `string`
18
+- Key & value with length 0 is omitted by default
19
+ - `foo=bar&hey` parses into `{foo: 'bar'}`
20
+- Supports repeating keys in query string
21
+ - `foo=bar&foo=baz` parses into `{foo: ['bar', 'baz']}`
22
23
### Usage
24
25
```javascript
0 commit comments