mirror of
https://github.com/papercss/papercss
synced 2026-03-14 22:45:51 +01:00
7 lines
134 B
JavaScript
7 lines
134 B
JavaScript
const chalk = require('chalk');
|
|
|
|
function log(...args) {
|
|
return console.log('📦 ', chalk.cyan(...args));
|
|
}
|
|
|
|
module.exports = log;
|