nvpqs

2.0.5 • Public • Published

nvpqs

NVP parser. Like querystring, but for pairs where the name encodes primitive types, objects or arrays.

NPM Version Build Status Coverage Status Dependencies

Table of Contents

Installation

Install via NPM.

$ npm install nvpqs

Usage

parse(string, [del], [sep], [eq])

Deserialize a NVP query string to an object. Optionally override the default delimiter (.), separator (&) and assignment (=) characters.

Example

const Nvpqs = require('nvpqs');
 
Nvpqs.parse('a=b&c.d=e&f.0=g'); // { a: 'b', c: { d: 'e' }, f: ['g'] }

stringify(object, [del], [sep], [eq])

Serialize an object to a NVP query string. Optionally override the default delimiter (.), separator (&) and assignment (=) characters.

Example

const Nvpqs = require('nvpqs');
 
Nvpqs.stringify({ a: 'b', c: { d: 'e' }, f: ['g'] }); // 'a=b&c.d=e&f.0=g'

Package Sidebar

Install

npm i nvpqs

Weekly Downloads

13

Version

2.0.5

License

MIT

Last publish

Collaborators

  • ruiquelhas