smarttime/ts/smarttime.plugins.ts

17 lines
429 B
TypeScript
Raw Normal View History

// @pushrocks scope
2020-07-11 23:36:24 +00:00
import * as lik from '@pushrocks/lik';
2020-05-25 21:45:43 +00:00
import * as smartdelay from '@pushrocks/smartdelay';
2018-07-12 22:03:08 +00:00
import * as smartpromise from '@pushrocks/smartpromise';
2017-08-21 12:28:59 +00:00
2020-07-11 23:36:24 +00:00
export { lik, smartdelay, smartpromise };
2021-10-06 09:58:36 +00:00
// third parties;
2022-11-21 08:14:32 +00:00
import croner from 'croner';
2020-05-27 16:59:26 +00:00
import dayjs from 'dayjs';
2022-11-21 08:14:32 +00:00
import isToday from 'dayjs/plugin/isToday.js';
2021-10-06 09:58:36 +00:00
import prettyMs from 'pretty-ms';
2020-10-05 22:28:40 +00:00
dayjs.extend(isToday);
2021-10-06 09:58:36 +00:00
export { croner, dayjs, prettyMs };