diff-sequences
Advanced tools
Comparing version 27.0.6 to 27.4.0
@@ -99,3 +99,11 @@ 'use strict'; | ||
const extendPathsF = (d, aEnd, bEnd, bF, isCommon, aIndexesF, iMaxF) => { | ||
const extendPathsF = ( | ||
d, | ||
aEnd, | ||
bEnd, | ||
bF, | ||
isCommon, | ||
aIndexesF, | ||
iMaxF // return the value because optimization might decrease it | ||
) => { | ||
// Unroll the first iteration. | ||
@@ -144,3 +152,11 @@ let iF = 0; | ||
const extendPathsR = (d, aStart, bStart, bR, isCommon, aIndexesR, iMaxR) => { | ||
const extendPathsR = ( | ||
d, | ||
aStart, | ||
bStart, | ||
bR, | ||
isCommon, | ||
aIndexesR, | ||
iMaxR // return the value because optimization might decrease it | ||
) => { | ||
// Unroll the first iteration. | ||
@@ -206,3 +222,3 @@ let iR = 0; | ||
iMaxR, | ||
division | ||
division // update prop values if return true | ||
) => { | ||
@@ -337,3 +353,3 @@ const bF = bStart - aStart; // bIndex = bF + aIndex - kF | ||
iMaxR, | ||
division | ||
division // update prop values if return true | ||
) => { | ||
@@ -340,0 +356,0 @@ const bR = bEnd - aEnd; // bIndex = bR + aIndex - kR |
{ | ||
"name": "diff-sequences", | ||
"version": "27.0.6", | ||
"version": "27.4.0", | ||
"repository": { | ||
@@ -24,3 +24,6 @@ "type": "git", | ||
"exports": { | ||
".": "./build/index.js", | ||
".": { | ||
"types": "./build/index.d.ts", | ||
"default": "./build/index.js" | ||
}, | ||
"./package.json": "./package.json" | ||
@@ -39,3 +42,3 @@ }, | ||
}, | ||
"gitHead": "d257d1c44ba62079bd4307ae78ba226d47c56ac9" | ||
"gitHead": "0dc6dde296550370ade2574d6665748fed37f9c9" | ||
} |
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
53069
863