query2Object(string)
{string}
{object}: 返回转换解析后的对象
{object}
const result = query2Object('a=1&b=b&c=true&d=false&e=null&f') // { // a: 1, // b: 'b', // c: true, // d: false, // e: null, // f: '' // }
← dealPath toNumber →