Skip to content

Commit

Permalink
Fixed incorrect const usage.
Browse files Browse the repository at this point in the history
  • Loading branch information
feuzeu committed Jun 20, 2022
1 parent 94367c9 commit 1c2e721
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/jaxon.core.js
Original file line number Diff line number Diff line change
Expand Up @@ -1484,7 +1484,7 @@ jaxon.cmd.node = {

let start = txt.indexOf(sSearch);
if (start > -1) {
const newTxt = [];
let newTxt = [];
while (start > -1) {
const end = start + sSearch.length;
newTxt.push(txt.substr(0, start));
Expand Down
Loading

0 comments on commit 1c2e721

Please sign in to comment.