Socket
Socket
Sign inDemoInstall

@aws-sdk/querystring-builder

Package Overview
Dependencies
Maintainers
4
Versions
118
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aws-sdk/querystring-builder - npm Package Compare versions

Comparing version 3.54.1 to 3.55.0

8

CHANGELOG.md

@@ -6,2 +6,10 @@ # Change Log

# [3.55.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.54.1...v3.55.0) (2022-03-21)
**Note:** Version bump only for package @aws-sdk/querystring-builder
## [3.54.1](https://github.com/aws/aws-sdk-js-v3/compare/v3.54.0...v3.54.1) (2022-03-15)

@@ -8,0 +16,0 @@

6

dist-cjs/index.js

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

const value = query[key];
key = util_uri_escape_1.escapeUri(key);
key = (0, util_uri_escape_1.escapeUri)(key);
if (Array.isArray(value)) {
for (let i = 0, iLen = value.length; i < iLen; i++) {
parts.push(`${key}=${util_uri_escape_1.escapeUri(value[i])}`);
parts.push(`${key}=${(0, util_uri_escape_1.escapeUri)(value[i])}`);
}

@@ -19,3 +19,3 @@ }

if (value || typeof value === "string") {
qsEntry += `=${util_uri_escape_1.escapeUri(value)}`;
qsEntry += `=${(0, util_uri_escape_1.escapeUri)(value)}`;
}

@@ -22,0 +22,0 @@ parts.push(qsEntry);

@@ -13,3 +13,3 @@ import { __values } from "tslib";

for (var i = 0, iLen = value.length; i < iLen; i++) {
parts.push(key + "=" + escapeUri(value[i]));
parts.push("".concat(key, "=").concat(escapeUri(value[i])));
}

@@ -20,3 +20,3 @@ }

if (value || typeof value === "string") {
qsEntry += "=" + escapeUri(value);
qsEntry += "=".concat(escapeUri(value));
}

@@ -23,0 +23,0 @@ parts.push(qsEntry);

{
"name": "@aws-sdk/querystring-builder",
"version": "3.54.1",
"version": "3.55.0",
"scripts": {

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

"dependencies": {
"@aws-sdk/types": "3.54.1",
"@aws-sdk/util-uri-escape": "3.52.0",
"tslib": "^2.3.0"
"@aws-sdk/types": "3.55.0",
"@aws-sdk/util-uri-escape": "3.55.0",
"tslib": "^2.3.1"
},

@@ -52,4 +52,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