17 lines
300 B
JavaScript
17 lines
300 B
JavaScript
const chalkAnimation = require('.');
|
|
|
|
const logo = [
|
|
' __',
|
|
'<(o )___',
|
|
' ( ._> /',
|
|
' `---\''
|
|
].join('\n');
|
|
|
|
const cls = `\u001B[2J\u001B[0;0H`;
|
|
|
|
const rainbow = chalkAnimation.rainbow(logo).stop(); // Don't start the animation
|
|
|
|
setInterval(() => {
|
|
console.log(cls + rainbow.frame());
|
|
}, 15);
|