File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ Such as,
15
15
Add | URI.addNew(key, val) | To add new param to URL. |
16
16
Bulk Add | URI.add([ {key1 : val1},{key2: val2}] )| To add multiple params to URL.|
17
17
Append | URI.append(key, val) | To add new item to the existing value. |
18
- Update | URI.add([ {key: val}] ) | To update param by simple add same param. |
18
+ Update Value | URI.add([ {key: val}] ) | To update param by simple add same param. |
19
19
Delete | URI.remove(key) | To remove param from URL. |
20
20
Bulk Delete | URI.remove([ key1, key2] ) | To remove multiple param from URL. |
21
21
Delete All | URI.removeAll() | To remove all param in the URL. |
@@ -30,14 +30,14 @@ Include the URI library to project by using,
30
30
31
31
``` html
32
32
33
- <script src =" uri_helper.js" ></script >
33
+ <script src =" uri_helper.min. js" ></script >
34
34
```
35
35
36
36
For ** ES6** :
37
37
38
38
``` html
39
39
40
- <script src =" uri_helper_es6.js" ></script >
40
+ <script src =" uri_helper_es6.min. js" ></script >
41
41
<script >
42
42
let URI = new _URI ();
43
43
</script >
You can’t perform that action at this time.
0 commit comments