Skip to content

Commit 89d1502

Browse files
committed
update README.md
1 parent b4b5ee6 commit 89d1502

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# tiny-querystring
22

3-
Tiny parsing and formatting URL query strings for Node.js and browser. (Only 430B only after gziped)
3+
[![Build Status](https://travis-ci.org/Cap32/tiny-querystring.svg?branch=master)](https://travis-ci.org/Cap32/tiny-querystring) [![Coverage Status](https://coveralls.io/repos/github/Cap32/tiny-querystring/badge.svg?branch=master)](https://coveralls.io/github/Cap32/tiny-querystring?branch=master) [![License](https://img.shields.io/badge/license-MIT_License-blue.svg?style=flat)](https://github.com/Cap32/tiny-querystring/blob/master/LICENSE.md)
4+
5+
Tiny parsing and formatting URL query strings for Node.js and browser. (Only 0.43K only after gzip)
46

57

68
## Installation
@@ -34,6 +36,7 @@ Parses a URL query string (str) into a collection of key and value pairs.
3436
```js
3537
import { parse } from 'tiny-querystring';
3638
parse('foo=bar&abc=xyz&abc=123');
39+
3740
/* returns { foo: 'bar', abc: ['xyz', '123'] } */
3841
```
3942

0 commit comments

Comments
 (0)