Skip to content

Commit 08da31c

Browse files
committed
chore(*): fixing jshint errors
1 parent 8a7cf7d commit 08da31c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/js/modules/infragistics.util.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3772,8 +3772,8 @@
37723772
if (!String.prototype.startsWith) {
37733773
String.prototype.startsWith = function (s) {
37743774
return this.indexOf(s) === 0;
3775-
}
3776-
};
3775+
};
3776+
}
37773777

37783778
String.prototype.startsWith1 = function (s, comparisonType) {
37793779
if (this.length < s.length) {
@@ -3790,8 +3790,8 @@
37903790
}
37913791

37923792
return $.ig.util.stringCompare1(this.slice(-s.length), s, comparisonType || 0) === 0;
3793-
}
3794-
};
3793+
};
3794+
}
37953795

37963796
String.prototype.remove = function (index, count) {
37973797
if (!count || ((index + count) > this.length)) {

0 commit comments

Comments
 (0)