Skip to content

openframe/querystring-gas

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

querystring-gas

querystring parser for Google Apps Script. Based on node-querystring.

Install

fork the repo or use directly this copy of the twilio-gas library in your own project. Use the project key:

MR5cBNlCtqiePv-dYxg3oBJIg1kW3vbkj

Examples

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

About

querystring parser for Google Apps Script

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%