Comparing version 1.3.5 to 1.3.6
@@ -59,3 +59,3 @@ 'use strict'; | ||
(0, _resemble.resemble)(newImg).compareTo(baseImg).onComplete(function (data) { | ||
if (Number(data.misMatchPercentage) > options.resemblejsThreshold) { | ||
if (Number(data.misMatchPercentage) >= options.resemblejsThreshold) { | ||
done(null, acc.concat([{ | ||
@@ -62,0 +62,0 @@ filename: currentImage, |
{ | ||
"name": "comp-shot", | ||
"version": "1.3.5", | ||
"version": "1.3.6", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -31,3 +31,3 @@ import express from 'express'; | ||
.onComplete((data) => { | ||
if (Number(data.misMatchPercentage) > options.resemblejsThreshold) { | ||
if (Number(data.misMatchPercentage) >= options.resemblejsThreshold) { | ||
done(null, acc.concat([{ | ||
@@ -34,0 +34,0 @@ filename: currentImage, |
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
9311