node-url-parse 1.5.9+~1.4.8-1 source package in Ubuntu

Changelog

node-url-parse (1.5.9+~1.4.8-1) unstable; urgency=medium

  * Team upload
  * Use uscan group
  * New upstream version 1.5.9+~1.4.8

 -- Yadd <email address hidden>  Mon, 21 Feb 2022 11:19:45 +0100

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
Jammy release universe misc

Builds

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-url-parse_1.5.9+~1.4.8-1.dsc 2.6 KiB 9a11552099e81e84153647315a0a19d6e7faf983d832e73b514cbe3efec040d5
node-url-parse_1.5.9+~1.4.8.orig-types-url-parse.tar.gz 2.1 KiB 90f0844a4e6071f337ac7ecc5083818a75d66e996b6281a870f4d928ef3c4c04
node-url-parse_1.5.9+~1.4.8.orig.tar.gz 18.1 KiB 23590b3ffed352173f6190cfef4a9359892f8ce8fa80bc030744cbd62142a5b6
node-url-parse_1.5.9+~1.4.8-1.debian.tar.xz 4.1 KiB 647a3961396bbb447e6969952f5ef200d27e54abd0f448239283f31d337adee1

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.