log-it-colored
Version:
Miniature ready-to-use console logger that just writes in a given color
9 lines • 301 B
JavaScript
import _chalk from "chalk";
import { LogItColored } from "./logger.js";
/** You can just use `chalk` itself
* @see https://www.npmjs.com/package/chalk
*/
export const chalk = _chalk;
/** Minimal color-only logger */
export const Logger = new LogItColored();
//# sourceMappingURL=index.js.map