@nlpjs/evaluator
Advanced tools
Comparing version 4.11.3 to 4.16.0
{ | ||
"name": "@nlpjs/evaluator", | ||
"version": "4.11.3", | ||
"version": "4.16.0", | ||
"description": "Evaluator", | ||
@@ -31,3 +31,3 @@ "author": { | ||
}, | ||
"gitHead": "ea70abb21cc0d24c2daa904f48d5177c2ad8c5ab" | ||
"gitHead": "7a6486422216c5010e183244c2610c53288224b5" | ||
} |
@@ -0,0 +0,0 @@ /* |
@@ -138,3 +138,3 @@ /* | ||
} | ||
return this.failResult; | ||
return undefined; | ||
} | ||
@@ -147,3 +147,3 @@ | ||
} | ||
return this.failResult; | ||
return undefined; | ||
} | ||
@@ -185,3 +185,3 @@ | ||
} | ||
return obj[prop]; | ||
return obj ? obj[prop] : this.failResult; | ||
} | ||
@@ -410,2 +410,5 @@ | ||
} | ||
if (!obj) { | ||
return this.failResult; | ||
} | ||
obj[prop] = value; | ||
@@ -412,0 +415,0 @@ return value; |
@@ -165,3 +165,3 @@ /* | ||
} | ||
return this.failResult; | ||
return undefined; | ||
} | ||
@@ -174,3 +174,3 @@ | ||
} | ||
return this.failResult; | ||
return undefined; | ||
} | ||
@@ -242,3 +242,3 @@ | ||
} | ||
return obj[prop]; | ||
return obj ? obj[prop] : undefined; | ||
} | ||
@@ -504,2 +504,5 @@ | ||
} | ||
if (!obj) { | ||
return this.failResult; | ||
} | ||
obj[prop] = value; | ||
@@ -506,0 +509,0 @@ return value; |
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
40373
1077