Closed tjconcept closed 7 years ago
Could the serializer part be split to an independent module?
var qss = require('querystringserializer'); qss({ key: 'value' }); // key=value
Is way nicer than:
var Qss = require('querystringparser/js/querystringserializer'); (new Qss()).serialize({ key: 'value' });
Or am I totally bikeshedding here? :laughing:
Just realised this has been available all the time as qs.stringify. Now I feel stupid.
qs.stringify
Could the serializer part be split to an independent module?
Is way nicer than:
Or am I totally bikeshedding here? :laughing: