omem-gallery/node_modules/log-timestamp/tests/func.js

11 lines
243 B
JavaScript

#!/usr/bin/env node
require('../')(function() {
return '<<' + Date.now() + '>> %s';
});
['debug', 'log', 'info', 'warn', 'error'].forEach(function(k) {
process.stdout.write('Testing ' + k + '\n');
console[k]('Hello %s!', 'world');
});