Socket
Socket
Sign inDemoInstall

querystring-es3

Package Overview
Dependencies
0
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    querystring-es3

Node's querystring module for all engines. (ES3 compat fork)


Version published
Weekly downloads
8.1M
decreased by-0.28%
Maintainers
1
Install size
16.6 kB
Created
Weekly downloads
 

Package description

What is querystring-es3?

The querystring-es3 npm package is a module that provides utilities for parsing and formatting URL query strings. It is a version of the querystring module that is compatible with older JavaScript engines that do not fully support ES5.

What are querystring-es3's main functionalities?

Parsing query strings

This feature allows you to parse a query string into an object, where each key-value pair in the query string becomes a key-value pair in the object.

var querystring = require('querystring-es3');
var parsed = querystring.parse('foo=bar&abc=xyz&abc=123');

Stringifying objects

This feature allows you to serialize an object into a query string, with support for nested objects and arrays.

var querystring = require('querystring-es3');
var stringified = querystring.stringify({ foo: 'bar', baz: ['qux', 'quux'], corge: '' });

Escaping and unescaping

This feature provides methods for percent-encoding and decoding strings, which is useful for sanitizing input and output for URL query strings.

var querystring = require('querystring-es3');
var escaped = querystring.escape('foo@bar.com');
var unescaped = querystring.unescape('foo%40bar.com');

Other packages similar to querystring-es3

Readme

Source

querystring

Build Status

Browser support

Node's querystring module for all engines.

Install

npm install querystring

Keywords

FAQs

Last updated on 13 Oct 2014

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc