update docs, add descriptions for api methods
This commit is contained in:
parent
d56c30cc4a
commit
cdb9017a72
25 changed files with 613 additions and 40 deletions
|
|
@ -1,10 +1,22 @@
|
|||
# parseQueryString(string)
|
||||
|
||||
- [Description](#description)
|
||||
- [Signature](#signature)
|
||||
- [How it works](#how-it-works)
|
||||
|
||||
---
|
||||
|
||||
### Description
|
||||
|
||||
Turns a string of the form `?a=1&b=2` to an object
|
||||
|
||||
```javascript
|
||||
var object = m.parseQueryString("a=1&b=2")
|
||||
// {a: "1", b: "2"}
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
### Signature
|
||||
|
||||
`object = m.parseQueryString(string)`
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue