Skip to content

Commit a346510

Browse files
authored
Release 1.0.1
1 parent a08784e commit a346510

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# <b>js-queryparams</b>
22

3-
### A JavaScript library to retrieve the query parameters with cross browser compatibility.
3+
### <i>A JavaScript library to retrieve the query parameters with cross browser compatibility.</i>
44

55
---
6+
<br/>
67

78
## How to Install:
89
Inside your project, run the following command:
@@ -12,9 +13,10 @@ npm i js-queryparams
1213
The above command will install the js-queryparams module inside the node_modules folder. After this you can either direct reference to the `lib/index.js` file or extract it and host it in your webserver.
1314

1415
---
16+
<br/>
1517

16-
## Usage:
17-
<br/> Assume the current browser url is:
18+
## Usage:
19+
Assume the current browser url is:
1820
https://www.example.com/?abc=123&xyz=somevalue&abc=45
1921
<br/>
2022
### The library has the following functions:
@@ -50,5 +52,6 @@ $qp.get("abc"); --> ["123", "45"]
5052
Once the reference is changed, the old reference is deleted so trying to use it will result in a ReferenceError.
5153

5254
---
55+
<br/>
5356

5457
## License: MIT (https://mit-license.kcak11.com)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "js-queryparams",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "A JavaScript library to retrieve the query parameters with cross browser compatibility.",
55
"main": "index.js",
66
"keywords": [

0 commit comments

Comments
 (0)