New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

URIjs

Package Overview
Dependencies
Maintainers
2
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

URIjs - npm Package Compare versions

Comparing version 1.10.0 to 1.10.1

2

package.json
{
"name": "URIjs",
"version": "1.10.0",
"version": "1.10.1",
"title": "URI.js - Mutating URLs",

@@ -5,0 +5,0 @@ "author": {

@@ -210,2 +210,6 @@ # URI.js #

### 1.10.1 (April 2nd 2013) ###
* adding [`absoluteTo()`](http://medialize.github.com/URI.js/docs.html#absoluteto) to properly resolve relative scheme - ([Issue #71](https://github.com/medialize/URI.js/issues/73))
### 1.10.0 (March 16th 2013) ###

@@ -212,0 +216,0 @@

@@ -5,3 +5,3 @@ /*!

*
* Version: 1.10.0
* Version: 1.10.1
*

@@ -8,0 +8,0 @@ * Author: Rodney Rehm

@@ -5,3 +5,3 @@ /*!

*
* Version: 1.10.0
* Version: 1.10.1
*

@@ -8,0 +8,0 @@ * Author: Rodney Rehm

@@ -5,3 +5,3 @@ /*!

*
* Version: 1.10.0
* Version: 1.10.1
*

@@ -8,0 +8,0 @@ * Author: Rodney Rehm

/*!
* URI.js - Mutating URLs
*
* Version: 1.10.0
* Version: 1.10.1
*

@@ -1638,2 +1638,10 @@ * Author: Rodney Rehm

if (!(base instanceof URI)) {
base = new URI(base);
}
if (!resolved._parts.protocol) {
resolved._parts.protocol = base._parts.protocol;
}
if (this._parts.hostname) {

@@ -1643,6 +1651,2 @@ return resolved;

if (!(base instanceof URI)) {
base = new URI(base);
}
for (i = 0, p; p = properties[i]; i++) {

@@ -1649,0 +1653,0 @@ resolved._parts[p] = base._parts[p];

@@ -5,3 +5,3 @@ /*!

*
* Version: 1.10.0
* Version: 1.10.1
*

@@ -8,0 +8,0 @@ * Author: Rodney Rehm

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc