queryjs

0.0.1 • Public • Published

queryjs

easy url query parameter manipulation

available in the browser and in nodejs npm install queryjs

queryjs.set(parameterObject)

//newURL === 'url.com?a=foo';
var newURL = queryjs.set('url.com', { a: 'foo' });
 
//newURL === 'url.com?a=new&b=bar'
newURL = queryjs.set('url.com?a=foo', { a: 'new', b: 'bar' });

queryjs.get()

//parameters === { a: 'foo' };
var parameters = queryjs.get('url.com?a=foo');

works with url hashes. (todo: support query parameter arrays)

Readme

Keywords

none

Package Sidebar

Install

npm i queryjs

Weekly Downloads

131

Version

0.0.1

License

MIT

Last publish

Collaborators

  • dubfriend