🚀 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.1.1
to
3.1.2
+4
-6
lib/interpreter-functions.js

@@ -115,9 +115,7 @@ 'use strict';

let res = '';
if (values[idvalue]) {
if (values.hasOwnProperty(idvalue)) {
const match = values[idvalue];
if (match) res = match;
} else {
if (idvalue.startsWith('ENV_')) {
res = getENVs(idvalue);
}
if (match || match === 0 || match === false) res = match;
} else if (idvalue.startsWith('ENV_')) {
res = getENVs(idvalue);
}

@@ -124,0 +122,0 @@

+1
-1
MIT License
Copyright (c) 2022 Runnerty Tech S.L.
Copyright (c) 2023 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.1.1",
"version": "3.1.2",
"description": "Runnerty interpreter module",

@@ -27,12 +27,12 @@ "author": "Runnerty Tech",

"lodash": "~4.17.21",
"moment": "~2.29.2",
"object-sizeof": "~1.6.3",
"uuid": "~8.3.2"
"moment": "~2.29.4",
"object-sizeof": "~2.6.3",
"uuid": "~9.0.1"
},
"devDependencies": {
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.2"
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.0.3"
}
}