|
|
|
@ -1,3 +1,12 @@
|
|
|
|
|
window.console = window.console || {};
|
|
|
|
|
window.console.log = window.console.log || function(){};
|
|
|
|
|
window.console.group = window.console.group || function(){};
|
|
|
|
|
window.console.groupEnd = window.console.groupEnd || function(){};
|
|
|
|
|
window.console.debug = window.console.debug || function(){};
|
|
|
|
|
window.console.warn = window.console.warn || function(){};
|
|
|
|
|
window.console.assert = window.console.assert || function(){};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!String.prototype.startsWith) {
|
|
|
|
|
Object.defineProperty(String.prototype, 'startsWith', {
|
|
|
|
|
enumerable: false,
|
|
|
|
@ -29,4 +38,4 @@ if(!('contains' in String.prototype))
|
|
|
|
|
String.prototype.contains = function(str, startIndex) {
|
|
|
|
|
return -1 !== String.prototype.indexOf.call(this, str, startIndex);
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|