Created
May 19, 2015 18:45
-
-
Save mimiflynn/a5c59fba6c4e759da464 to your computer and use it in GitHub Desktop.
Quick params parser tool
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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