UNPKG
ts-make-gen
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
Lightning Fast Typescript Project Generator
github.com/vaderdev/tsmake
vaderdev/tsmake
ts-make-gen
/
dist
/
title.js
9 lines
(8 loc)
•
266 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
import
chalkAnimation
from
"chalk-animation"
;
const
sleep
= (
ms =
1000
) =>
new
Promise
(
(
r
) =>
setTimeout
(r, ms));
async
function
title
(
) {
const
rainbowTitle = chalkAnimation.
rainbow
(
'TSMake'
);
await
sleep
(); rainbowTitle.
stop
(); }
export
default
title;