Skip to content

Commit 5b1930c

Browse files
authored
Merge pull request #299 from nidgetgod/fix-replaceAll-unfinished-modify
Remove unexpected brackets
2 parents 3cc9fee + ac8ae4a commit 5b1930c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/assets/src/js/jquery.multipleInput.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@
485485
};
486486

487487
var replaceAll = function (search, replace, subject) {
488-
if (!(subject instanceof String) && typeof subject !== 'string')) {
488+
if (!(subject instanceof String) && typeof subject !== 'string') {
489489
console.warn('Call replaceAll for non-string value: ' + subject);
490490
return subject;
491491
}

0 commit comments

Comments
 (0)