jsdo.itの右下のログに出力する関数


/**
 * jsdo.itの右下のログに出力する関数
 */
function log() {

    var args = Array.prototype.slice.call(arguments),
    message =  args.reduce(function (a, b) {
        return a + b;
    });

    console.log.apply(console, args);
    window.parent.postMessage(
        JSON.stringify({'type':'console.log','message': message}), 
        'http://jsdo.it'
    );
}