UNPKG

217 BJavaScriptView Raw
1if (!String.prototype.startsWith) {
2 String.prototype.startsWith = function (searchString, position) {
3 position = position || 0;
4 return this.indexOf(searchString, position) === position;
5 };
6}
\No newline at end of file