UNPKG

spotify-now

Version:
13 lines (9 loc) 255 B
import { textSync } from "figlet"; export const printLogo = () => { const logoText = "Spotify Now"; const parsedLogo = textSync(logoText, { horizontalLayout: "fitted", whitespaceBreak: true, }); console.log(parsedLogo); };