Skip to content

Commit

Permalink
Rebuild dist/*
Browse files Browse the repository at this point in the history
  • Loading branch information
chbrown committed Feb 17, 2022
1 parent f0de16e commit 724376e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/rfc6902.js
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@
let memoized = memo[memo_key];
if (memoized === undefined) {
// TODO: this !diff(...).length usage could/should be lazy
if (i > 0 && j > 0 && !diff(input[i - 1], output[j - 1], new Pointer()).length) {
if (i > 0 && j > 0 && !diff(input[i - 1], output[j - 1], ptr.add(String(i - 1))).length) {
// equal (no operations => no cost)
memoized = dist(i - 1, j - 1);
}
Expand Down
4 changes: 2 additions & 2 deletions dist/rfc6902.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 724376e

Please sign in to comment.