Huge News!Announcing our $40M Series B led by Abstract Ventures.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.7.2 to 1.7.3

2

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

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

@@ -187,2 +187,7 @@ # URI.js #

### 1.7.3 (October 11th 2012) ###
* fixing `strictEncodeURIComponent()` to properly encode `*` to `%2A`
* fixing IE9's incorrect report of `img.href` being available - ([Issue #48](https://github.com/medialize/URI.js/issues/48))
### 1.7.2 (August 28th 2012) ###

@@ -189,0 +194,0 @@

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

*
* Version: 1.7.2
* Version: 1.7.3
*

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

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

*
* Version: 1.7.2
* Version: 1.7.3
*

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

/*!
* URI.js - Mutating URLs
*
* Version: 1.7.2
* Version: 1.7.3
*

@@ -106,3 +106,5 @@ * Author: Rodney Rehm

// see https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Global_Objects/encodeURIComponent
return encodeURIComponent(string).replace(/[!'()*]/g, escape);
return encodeURIComponent(string)
.replace(/[!'()*]/g, escape)
.replace(/\*/g, "%2A");
}

@@ -109,0 +111,0 @@ URI.encode = strictEncodeURIComponent;

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

*
* Version: 1.7.2
* Version: 1.7.3
*

@@ -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