mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-04-13 09:42:01 +00:00
14 lines
328 B
JavaScript
14 lines
328 B
JavaScript
![]() |
// Generated by CoffeeScript 1.4.0
|
||
|
(function() {
|
||
|
var info;
|
||
|
|
||
|
info = function(username, message) {
|
||
|
var timestamp;
|
||
|
timestamp = new Date().toISOString().replace(/T/, ' ').replace(/\..+/, '');
|
||
|
return console.log("[" + timestamp + "] ---> [" + username + "] " + message);
|
||
|
};
|
||
|
|
||
|
exports.info = info;
|
||
|
|
||
|
}).call(this);
|