node-nk-base
Advanced tools
Comparing version 1.1.3 to 1.1.4
@@ -758,3 +758,3 @@ function NKB(basefile) { | ||
console.error(`node-nk-base part.deleteVariable(id): Part with this id(${id}) doesn't exists!`); | ||
return; | ||
return null; | ||
} | ||
@@ -764,3 +764,3 @@ let pe = bt.indexOf(``, ps); | ||
console.error(`node-nk-base part.deleteVariable(id): Part with this id(${id}) doesn't exists!`); | ||
return; | ||
return null; | ||
} | ||
@@ -771,7 +771,7 @@ let part = bt.substring(ps+id.length+4, pe+1); | ||
console.error(`node-nk-base part.deleteVariable(variable): This variable(${variable}) doesn't exists!`); | ||
return; | ||
return null; | ||
} | ||
let ve = part.indexOf(``, vs); | ||
if(`${bt.substring(0, ps)}${id}${part.substring(0, vs)}${part.substring(ve+2, part.length)}${bt.substring(pe+3, bt.length)}`) return true; | ||
if(wb(`${bt.substring(0, ps)}${id}${part.substring(0, vs)}${part.substring(ve+2, part.length)}${bt.substring(pe+3, bt.length)}`)) return true; else return null; | ||
@@ -778,0 +778,0 @@ } |
{ | ||
"name": "node-nk-base", | ||
"version": "1.1.3", | ||
"version": "1.1.4", | ||
"description": "database for nodejs by NK", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
36237