Utility functions.
yarn add @hibikine/utils # or npm i @hibikine/utils --save
wait(ms: number): Promise<void>
import { wait } from '@hibikine/utils';
(async () => {
await wait(2000);
console.log('Hello!'); // Show after 2 secounds
})();
yarn watch
yarn build