querystring parser for Google Apps Script. Based on node-querystring.
fork the repo or use directly this copy of the twilio-gas library in your own project. Use the project key:
MR5cBNlCtqiePv-dYxg3oBJIg1kW3vbkj
var qs = require('qs');
qs.parse('user[name][first]=Tobi&user[email][email protected]');
// => { user: { name: { first: 'Tobi' }, email: '[email protected]' } }
qs.stringify({ user: { name: 'Tobi', email: '[email protected]' }})
// => user[name]=Tobi&user[email]=tobi%40learnboost.com