🚀 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.2
to
3.0.3
+1
-20
lib/interpreter-functions.js

@@ -144,22 +144,3 @@ 'use strict';

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

@@ -166,0 +147,0 @@

+1
-1
MIT License
Copyright (c) 2021 Runnerty Tech S.L.
Copyright (c) 2022 Runnerty Tech S.L.

@@ -5,0 +5,0 @@ Permission is hereby granted, free of charge, to any person obtaining a copy

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

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

"devDependencies": {
"eslint": "^8.5.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",

@@ -35,0 +35,0 @@ "eslint-plugin-prettier": "^4.0.0",