| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1216,7 +1216,7 @@ function getFunctionBase(value, constructor, tag) { | |||
| 1216 | 1216 | function identicalSequenceRange(a, b) { | |
| 1217 | 1217 | for (let i = 0; i < a.length - 3; i++) { | |
| 1218 | 1218 | // Find the first entry of b that matches the current entry of a. | |
| 1219 | - const pos = b.indexOf(a[i]); | ||
| 1219 | + const pos = ArrayPrototypeIndexOf(b, a[i]); | ||
| 1220 | 1220 | if (pos !== -1) { | |
| 1221 | 1221 | const rest = b.length - pos; | |
| 1222 | 1222 | if (rest > 3) { | |
| Back | FazBrowse Home | New Git URL |
0 commit comments