Skip to content

Instantly share code, notes, and snippets.

@mimiflynn
Created May 19, 2015 18:45
Show Gist options
  • Save mimiflynn/a5c59fba6c4e759da464 to your computer and use it in GitHub Desktop.
Save mimiflynn/a5c59fba6c4e759da464 to your computer and use it in GitHub Desktop.
Quick params parser tool
#!/usr/bin/env node
var Qs = require('qs'),
params = 'params=goHere',
parse = Qs.parse(params);
console.log(parse);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment