node-tee
Version:
Simply node test framework
35 lines (33 loc) • 417 B
JavaScript
const l = require('l-print');
module.exports = {
info: l().pipe(
'blue',
'date',
'log',
),
good: l().pipe(
'green',
'date',
'log',
),
error: l().pipe(
'red',
'date',
'log',
),
head: l().pipe(
'cyan',
'date',
'log',
),
headInfo: l().pipe(
'yellow',
'date',
'log',
),
headModule: l().pipe(
'magneta',
'date',
'log',
),
};