I have to use bind() in the method below. I only want to support IE10 and up. Can anyone verify when or if bind() is supported by IE10?
// Verify console exists
...
if (window.console) {
logger = window.console.log.bind(window.console);
// bind needed for Safari but not FF, possible IE issue?
} else {
return false; // window.console not available, silent fail
}
...
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…