You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

tiny-parse

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tiny-parse

URL parsing with coercion of `query`

3.0.3
latest
Source
npmnpm
Version published
Maintainers
1
Created
Source

tiny-parse

build status

URL parsing with coercion of query

Example

"use strict";

const parse = require("tiny-parse");

console.log(parse("http://localhost/?abc=true").query.abc === true); // true
console.log(parse("http://localhost/?abc=true", false).query.abc === true); // false

API

parse(arg, coerce=true) Parses the input, accepts a URL or http.ClientRequest

License

Copyright (c) 2018 Jason Mulligan Licensed under the BSD-3 license.

Keywords

url

FAQs

Package last updated on 19 Jun 2018

Did you know?

Socket

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