querystringify

WebJar for querystringify

License

License

MIT
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

querystringify
Last Version

Last Version

2.2.0
Release Date

Release Date

Type

Type

jar
Description

Description

querystringify
WebJar for querystringify
Project URL

Project URL

https://www.webjars.org
Source Code Management

Source Code Management

https://github.com/unshiftio/querystringify

Download querystringify

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/querystringify/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>querystringify</artifactId>
    <version>2.2.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/querystringify/
implementation 'org.webjars.npm:querystringify:2.2.0'
// https://jarcasting.com/artifacts/org.webjars.npm/querystringify/
implementation ("org.webjars.npm:querystringify:2.2.0")
'org.webjars.npm:querystringify:jar:2.2.0'
<dependency org="org.webjars.npm" name="querystringify" rev="2.2.0">
  <artifact name="querystringify" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='querystringify', version='2.2.0')
)
libraryDependencies += "org.webjars.npm" % "querystringify" % "2.2.0"
[org.webjars.npm/querystringify "2.2.0"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

querystringify

Version npmBuild StatusDependenciesCoverage Status

A somewhat JSON compatible interface for query string parsing. This query string parser is dumb, don't expect to much from it as it only wants to parse simple query strings. If you want to parse complex, multi level and deeply nested query strings then you should ask your self. WTF am I doing?

Installation

This module is released in npm as querystringify. It's also compatible with browserify so it can be used on the server as well as on the client. To install it simply run the following command from your CLI:

npm install --save querystringify

Usage

In the following examples we assume that you've already required the library as:

'use strict';

var qs = require('querystringify');

qs.parse()

The parse method transforms a given query string in to an object. Parameters without values are set to empty strings. It does not care if your query string is prefixed with a ?, a #, or not prefixed. It just extracts the parts between the = and &:

qs.parse('?foo=bar');         // { foo: 'bar' }
qs.parse('#foo=bar');         // { foo: 'bar' }
qs.parse('foo=bar');          // { foo: 'bar' }
qs.parse('foo=bar&bar=foo');  // { foo: 'bar', bar: 'foo' }
qs.parse('foo&bar=foo');      // { foo: '', bar: 'foo' }

qs.stringify()

This transforms a given object in to a query string. By default we return the query string without a ? prefix. If you want to prefix it by default simply supply true as second argument. If it should be prefixed by something else simply supply a string with the prefix value as second argument:

qs.stringify({ foo: bar });       // foo=bar
qs.stringify({ foo: bar }, true); // ?foo=bar
qs.stringify({ foo: bar }, '#');  // #foo=bar
qs.stringify({ foo: '' }, '&');   // &foo=

License

MIT

org.webjars.npm

Versions

Version
2.2.0
2.1.1
2.1.0
2.0.0
1.0.0
0.0.3