Spaces:
Runtime error
Runtime error
File size: 414 Bytes
23ac194 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
"use strict";
const parse = require("./parse");
const stringify = require("./stringify");
const fastQuerystring = {
parse,
stringify,
};
/**
* Enable TS and JS support
*
* - `const qs = require('fast-querystring')`
* - `import qs from 'fast-querystring'`
*/
module.exports = fastQuerystring;
module.exports.default = fastQuerystring;
module.exports.parse = parse;
module.exports.stringify = stringify;
|