🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

@runnerty/interpreter-core

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@runnerty/interpreter-core - npm Package Compare versions

Comparing version
3.0.1
to
3.0.2
+16
-11
lib/interpreter-functions.js

@@ -119,6 +119,2 @@ 'use strict';

res = match;
} else {
if (idvalue.startsWith('ENV_')) {
res = getENVs(idvalue);
}
}

@@ -132,2 +128,6 @@

}
} else {
if (idvalue.startsWith('ENV_')) {
res = getENVs(idvalue);
}
}

@@ -146,7 +146,16 @@ return res;

function getvaluequoted(idvalue, quote = "'", values) {
const match = values[idvalue];
let res = '';
if (values[idvalue]) {
const match = values[idvalue];
if (match) {
res = match;
if (match) {
res = match;
}
if (quote) {
if (quote === "\\'") {
quote = "'";
}
res = quote + res + quote;
}
} else {

@@ -157,6 +166,2 @@ if (idvalue.startsWith('ENV_')) {

}
if (quote === "\\'") {
quote = "'";
}
return quote + res + quote;

@@ -163,0 +168,0 @@ }

{
"name": "@runnerty/interpreter-core",
"version": "3.0.1",
"version": "3.0.2",
"description": "Runnerty interpreter module",

@@ -32,7 +32,7 @@ "author": "Runnerty Tech",

"devDependencies": {
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1"
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1"
}
}