0.0.1 • Published 11 years ago

qmark v0.0.1

Weekly downloads
15
License
-
Repository
github
Last release
11 years ago

qmark

A blazing fast query string parser.

API

With Ender ...

  // Assume the url is bloglovin.com?name=FashionSquad&id=123
  $.qmark('name') // FashionSquad
  $.queryParam('id') // 123

Or on its own ...

  qmark('name') // FashionSquad
  qmark('id') // 123

Tests

You can see tests by running make test and navigating to http://localhost:8080/tests/tests.html in your browser.