2018-03-08 20:09:02 +00:00
|
|
|
'use strict';
|
|
|
|
|
2018-03-08 21:49:03 +00:00
|
|
|
const _ = {
|
2018-03-08 20:09:02 +00:00
|
|
|
version: 0,
|
|
|
|
debug: true,
|
|
|
|
// http://paulirish.com/2009/log-a-lightweight-wrapper-for-consolelog/
|
|
|
|
log: function() {
|
|
|
|
log.history = log.history || []; // store logs to an array for reference
|
|
|
|
log.history.push(arguments);
|
|
|
|
if(this.debug){
|
|
|
|
console.log( Array.prototype.slice.call(arguments) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
riot.mixin({
|
2018-03-08 21:49:03 +00:00
|
|
|
log: _.log,
|
2018-03-08 20:09:02 +00:00
|
|
|
relay: riot.observable()
|
|
|
|
});
|