1.1.4 • Published 5 years ago

url-search v1.1.4

Weekly downloads
12
License
MIT
Repository
github
Last release
5 years ago

url-search

An address bar parameter managerment plugin.

Usage

const URLSearch = require('url-search');
const url = new URLSearch();

url.push('type', 1); // '?type=1'
url.push('keyword', 'hello'); // '?type=1&keyword=hello'

url.remove('type'); // '?keyword=hello'
url.remove('keyword'); // ''

url.data.type = 1;
url.data.keyword = 'hello';
url.update();
// '?type=1&keyword=hello'

Methods

const URLSearch = require('url-search');
URLSearch.prototype.push || function
URLSearch.prototype.remove || function
URLSearch.prototype.update || function
URLSearch.parse || function
1.1.4

5 years ago

1.1.3

5 years ago

1.1.2

5 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.10

5 years ago

1.0.9

5 years ago

1.0.8

5 years ago

1.0.7

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago