We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a7cf7d commit 08da31cCopy full SHA for 08da31c
src/js/modules/infragistics.util.js
@@ -3772,8 +3772,8 @@
3772
if (!String.prototype.startsWith) {
3773
String.prototype.startsWith = function (s) {
3774
return this.indexOf(s) === 0;
3775
- }
3776
- };
+ };
+ }
3777
3778
String.prototype.startsWith1 = function (s, comparisonType) {
3779
if (this.length < s.length) {
@@ -3790,8 +3790,8 @@
3790
}
3791
3792
return $.ig.util.stringCompare1(this.slice(-s.length), s, comparisonType || 0) === 0;
3793
3794
3795
3796
String.prototype.remove = function (index, count) {
3797
if (!count || ((index + count) > this.length)) {
0 commit comments