terminal-styling
Version:
A npm package to add some styling to terminal output
10 lines (9 loc) • 407 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var index_1 = require("./index");
index_1.console.customColor('000000', 'Only Text and Bg', 'ffffff');
index_1.console.err("error");
index_1.console.info("info");
index_1.console.warn("warn");
index_1.console.debug("Debug: variable x = 42");
index_1.console.table([{ name: "Alice", age: 25 }, { name: 'Bob', age: 30 }]);