7 lines
196 B
JavaScript
7 lines
196 B
JavaScript
|
|
||
|
// https://stackoverflow.com/a/33106217
|
||
|
if (typeof String.prototype.startsWith != 'function') {
|
||
|
String.prototype.startsWith = function (str) {
|
||
|
return this.indexOf(str) === 0;
|
||
|
};
|
||
|
}
|