spotify-now
Version:
spotify, rgb and bob.
14 lines • 450 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.printLogo = void 0;
const figlet_1 = require("figlet");
const printLogo = () => {
const logoText = "Spotify Now";
const parsedLogo = (0, figlet_1.textSync)(logoText, {
horizontalLayout: "fitted",
whitespaceBreak: true,
});
console.log(parsedLogo);
};
exports.printLogo = printLogo;
//# sourceMappingURL=printLogo.js.map