Socket
Socket
Sign inDemoInstall

@alicloud/tea-util

Package Overview
Dependencies
Maintainers
14
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@alicloud/tea-util - npm Package Compare versions

Comparing version 1.2.4 to 1.2.5

5

dist/client.d.ts

@@ -50,2 +50,7 @@ /// <reference types="node" />

};
static anyifyMapValue(m: {
[key: string]: string;
}): {
[key: string]: any;
};
static assertAsBoolean(value: any): boolean;

@@ -52,0 +57,0 @@ static assertAsString(value: any): string;

3

dist/client.js

@@ -149,2 +149,5 @@ "use strict";

}
static anyifyMapValue(m) {
return m;
}
static assertAsBoolean(value) {

@@ -151,0 +154,0 @@ if (typeof value === 'boolean') {

2

package.json
{
"name": "@alicloud/tea-util",
"version": "1.2.4",
"version": "1.2.5",
"description": "",

@@ -5,0 +5,0 @@ "main": "dist/client.js",

@@ -179,2 +179,6 @@ import { Readable } from 'stream';

static anyifyMapValue(m: { [key: string]: string }): {[key: string]: any } {
return m;
}
static assertAsBoolean(value: any): boolean {

@@ -181,0 +185,0 @@ if (typeof value === 'boolean') {

Sorry, the diff of this file is not supported yet

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