logo@krutoo/utils

Misc utils

Utilities from the "misc" category do not belong to any of the other categories and are available from the package root:

import { wait } from '@krutoo/utils';

console.log('Start');

await wait(1000);

console.log('One second passed');