Socket
Socket
Sign inDemoInstall

@trivikr-test/util-uri-escape

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@trivikr-test/util-uri-escape - npm Package Compare versions

Comparing version 3.52.0 to 3.55.0

2

dist-es/escape-uri.js
export var escapeUri = function (uri) {
return encodeURIComponent(uri).replace(/[!'()*]/g, hexEncode);
};
var hexEncode = function (c) { return "%" + c.charCodeAt(0).toString(16).toUpperCase(); };
var hexEncode = function (c) { return "%".concat(c.charCodeAt(0).toString(16).toUpperCase()); };
{
"name": "@trivikr-test/util-uri-escape",
"version": "3.52.0",
"version": "3.55.0",
"scripts": {

@@ -22,3 +22,3 @@ "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",

"dependencies": {
"tslib": "^2.3.0"
"tslib": "^2.3.1"
},

@@ -50,4 +50,4 @@ "engines": {

"typedoc": "0.19.2",
"typescript": "~4.3.5"
"typescript": "~4.6.2"
}
}
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