node-url-parse 1.5.3-1 source package in Ubuntu

Changelog

node-url-parse (1.5.3-1) unstable; urgency=medium

  * Team upload
  * Fix GitHub tags regex
  * New upstream version 1.5.3 (Closes: #991577)

 -- Yadd <email address hidden>  Sat, 31 Jul 2021 13:13:02 +0200

Upload details

Uploaded by:
Debian Javascript Maintainers
Uploaded to:
Sid
Original maintainer:
Debian Javascript Maintainers
Architectures:
all
Section:
javascript
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Impish: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-url-parse_1.5.3-1.dsc 2.5 KiB ac8682a068fcbf40cab8c29c0e6d3ffe8069d5b3ec0c4b4b5aee065dc2c35868
node-url-parse_1.5.3.orig-types-url-parse.tar.gz 2.0 KiB aacd8bb80991adce84b6305b2f64d1644f16ac47376a0958954555517647b03e
node-url-parse_1.5.3.orig.tar.gz 16.4 KiB 1223358bf5f9cfcf0b1eb5619c1bb6083edb2cd92adba85b54235f6dac16aa08
node-url-parse_1.5.3-1.debian.tar.xz 4.1 KiB 38288eea155fc07c4cc554f61caf93591ab7e22459a8631b266b4cf8a910ebac

Available diffs

No changes file available.

Binary packages built by this source

node-url-parse: Parse URL in node using the URL module and in the browser using the DOM

 The url-parse method exposes two different API interfaces. The url interface
 that you know from Node.js and the new URL interface that is available in
 the latest browsers.
 .
 Since 0.1 we've moved away from using the DOM's <a> element for URL parsing
 and moving to a full Regular Expression solution. The main reason for this
 change is to make the URL parser available in different JavaScript
 environments as you don't always have access to the DOM like Worker
 environments. This module still have a really small foot print as this
 module's main intention is to be bundled with client-side code. The only
 problem however with a RegExp based solution is that it required a lot of
 lookups causing major problems in FireFox. So the last and the current
 solution was a pure string parsing solution which chops up the URL in
 smaller pieces.
 .
 Node.js is an event-based server-side JavaScript engine.