Socket
Socket
Sign inDemoInstall

@tizentv/webide-common-tizentv

Package Overview
Dependencies
152
Maintainers
8
Versions
24
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.14 to 1.0.15

18

lib/cryptUtil.js

@@ -63,4 +63,7 @@ const platform = require('os').platform();

try {
const { stdout } = execAsync(`${cryptTool} --decrypt ${pwdFile}`);
const { stdout } = await execAsync(
`${cryptTool} --decrypt ${pwdFile}`
);
let out = stdout;
out = out.toString();
if (out.includes('PASSWORD:')) {

@@ -71,10 +74,7 @@ out.trim();

} catch (err) {
let stderr = err.stderr.toString();
let stdout = err.stdout.toString();
if (stderr) {
console.log(stderr);
} else if (stdout.includes('PASSWORD:')) {
stdout.trim();
password = stdout.substring(9).replace(/[\r\n]/g, '');
if (err.includes('PASSWORD:')) {
err.trim();
password = err.substring(9).replace(/[\r\n]/g, '');
} else {
console.info(err);
}

@@ -81,0 +81,0 @@ }

{
"name": "@tizentv/webide-common-tizentv",
"version": "1.0.14",
"version": "1.0.15",
"description": "Common APIs for web IDEs extension development to support Tizen SDK features.",

@@ -5,0 +5,0 @@ "main": "index.js",

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc