CoolFace
Apppublic

strong-tie/inbound-calls

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
index.js21 linesDownload Raw Back to lib
1"use strict";2 3const parse = require("./parse");4const stringify = require("./stringify");5 6const fastQuerystring = {7  parse,8  stringify,9};10 11/**12 * Enable TS and JS support13 *14 * - `const qs = require('fast-querystring')`15 * - `import qs from 'fast-querystring'`16 */17module.exports = fastQuerystring;18module.exports.default = fastQuerystring;19module.exports.parse = parse;20module.exports.stringify = stringify;21