Socket
Socket
Sign inDemoInstall

@aws-sdk/util-uri-escape

Package Overview
Dependencies
1
Maintainers
4
Versions
56
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.1.0-preview.1 to 0.1.0-preview.2

CHANGELOG.md

4

build/escape-uri-path.js

@@ -9,3 +9,3 @@ "use strict";

try {
for (var _b = tslib_1.__values(uri.split('/')), _c = _b.next(); !_c.done; _c = _b.next()) {
for (var _b = tslib_1.__values(uri.split("/")), _c = _b.next(); !_c.done; _c = _b.next()) {
var sub = _c.value;

@@ -22,5 +22,5 @@ parts.push(escape_uri_1.escapeUri(sub));

}
return parts.join('/');
return parts.join("/");
}
exports.escapeUriPath = escapeUriPath;
//# sourceMappingURL=escape-uri-path.js.map

@@ -11,4 +11,7 @@ "use strict";

function hexEncode(c) {
return "%" + c.charCodeAt(0).toString(16).toUpperCase();
return "%" + c
.charCodeAt(0)
.toString(16)
.toUpperCase();
}
//# sourceMappingURL=escape-uri.js.map

@@ -1,2 +0,2 @@

export * from './escape-uri';
export * from './escape-uri-path';
export * from "./escape-uri";
export * from "./escape-uri-path";
{
"name": "@aws-sdk/util-uri-escape",
"version": "0.1.0-preview.1",
"scripts": {
"prepublishOnly": "tsc",
"pretest": "tsc -p tsconfig.test.json",
"test": "jest"
},
"main": "./build/index.js",
"types": "./build/index.d.ts",
"author": {
"name": "AWS SDK for JavaScript Team",
"email": "aws-sdk-js@amazon.com",
"url": "https://aws.amazon.com/javascript/"
},
"license": "Apache-2.0",
"dependencies": {
"tslib": "^1.8.0"
},
"devDependencies": {
"@types/jest": "^20.0.2",
"jest": "^20.0.4",
"typescript": "^3.0.0"
},
"gitHead": "960970c0c25938a8d51d1a243d3f21f05acea92e"
"name": "@aws-sdk/util-uri-escape",
"version": "0.1.0-preview.2",
"scripts": {
"prepublishOnly": "tsc",
"pretest": "tsc -p tsconfig.test.json",
"test": "jest"
},
"main": "./build/index.js",
"types": "./build/index.d.ts",
"author": {
"name": "AWS SDK for JavaScript Team",
"email": "",
"url": "https://aws.amazon.com/javascript/"
},
"license": "Apache-2.0",
"dependencies": {
"tslib": "^1.8.0"
},
"devDependencies": {
"@types/jest": "^24.0.12",
"jest": "^24.7.1",
"typescript": "~3.4.0"
}
}

@@ -1,1 +0,4 @@

# util-uri-encode
# util-uri-encode
[![NPM version](https://img.shields.io/npm/v/@aws-sdk/util-uri-escape/preview.svg)](https://www.npmjs.com/package/@aws-sdk/util-uri-escape)
[![NPM downloads](https://img.shields.io/npm/dm/@aws-sdk/util-uri-escape.svg)](https://www.npmjs.com/package/@aws-sdk/util-uri-escape)
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"declaration": true,
"strict": true,
"sourceMap": true,
"downlevelIteration": true,
"importHelpers": true,
"noEmitHelpers": true,
"lib": [
"es5",
"es2015.promise",
"es2015.collection",
"es2015.iterable",
"es2015.symbol.wellknown"
],
"rootDir": "./src",
"outDir": "./build"
}
}
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"declaration": true,
"strict": true,
"sourceMap": true,
"downlevelIteration": true,
"importHelpers": true,
"noEmitHelpers": true,
"lib": [
"es5",
"es2015.promise",
"es2015.collection",
"es2015.iterable",
"es2015.symbol.wellknown"
],
"rootDir": "./src",
"outDir": "./build"
}
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc