Node.js examples for Environment:Browser
IE compatible logging for developers
/*/* w ww .j av a 2s. c o m*/ * IE compatible logging for developers */ var logStr = function logStr(string) { if (window.console) { // IE... window.console.log('SweetAlert: ' + string); } };