node-url-parse 1.5.10+~1.4.8-3 source package in Ubuntu

Changelog

node-url-parse (1.5.10+~1.4.8-3) unstable; urgency=medium

  * Team upload
  * Declare compliance with policy 4.6.2
  * Fix clean (Closes: #1045676)

 -- Yadd <email address hidden>  Mon, 14 Aug 2023 08:38:26 +0400

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
Oracular release universe misc
Noble release universe misc
Mantic release universe misc

Builds

Mantic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-url-parse_1.5.10+~1.4.8-3.dsc 2.6 KiB 8ce774c30140e5d875d39274af7712bf756287dc6d93c3e2e7a5fd9e72777cac
node-url-parse_1.5.10+~1.4.8.orig-types-url-parse.tar.gz 2.1 KiB 90f0844a4e6071f337ac7ecc5083818a75d66e996b6281a870f4d928ef3c4c04
node-url-parse_1.5.10+~1.4.8.orig.tar.gz 18.3 KiB 2e487dfe9108bccfd2b809ea318fb14bfaf8f96dda52b2753b8a757460c1f59d
node-url-parse_1.5.10+~1.4.8-3.debian.tar.xz 4.2 KiB 038a9c28e2aaf266db6a5e6bd4f8afe6dc26f0fadcb810fb28d2881ef09da902

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.