Browse Source

Improve console polyfill String coercion

pull/222/head
Sami Vaarala 10 years ago
parent
commit
eced78384c
  1. 6
      polyfills/console-minimal.js

6
polyfills/console-minimal.js

@ -8,9 +8,13 @@ if (typeof console === 'undefined') {
});
}
if (typeof console.log === 'undefined') {
(function () {
var origPrint = print; // capture in closure in case changed later
Object.defineProperty(this.console, 'log', {
value: function () {
print(Array.prototype.join.call(arguments, ' '));
var strArgs = Array.prototype.map.call(arguments, function (v) { return String(v); });
origPrint(Array.prototype.join.call(strArgs, ' '));
}, writable: true, enumerable: false, configurable: true
});
})();
}

Loading…
Cancel
Save