UNPKG

minimal-polyfills

Version:

An ultra light-weight, nonexhaustive, polyfills library

10 lines (6 loc) 187 B
if (typeof String.prototype.startsWith !== "function") { String.prototype.startsWith = function startsWith(str){ return this.indexOf(str) === 0; }; } export {};