summaryrefslogtreecommitdiffstats
path: root/src/civetweb/src/third_party/duktape-1.8.0/polyfills/console-minimal.js
blob: 1876c5fda6ee12653b9501475becb7843d91bfdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 *  Minimal console.log() polyfill
 */

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