Fastest query parse
with performance of querystring
module and features of qs
module
- Fast
- Auto-decode URL
import('qs')
is able to deep parse up-to 5-level depth of array and objects whereas fast-query-parse
cannot do this as can parse only 1-level depth and results goes wrong if depth more than one
import parse from 'fast-query-parse';
parse('foo=bar');
MIT