Package Exports
- @pushrocks/smarttime
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@pushrocks/smarttime) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@pushrocks/smarttime
handle time in smart ways
Availabililty and Links
Status for master
Usage
Use TypeScript for best in class instellisense.
Smarttime offers smart ways to deal with time.
class CronManager
This class provides scheduling of functions with a cron syntax
import { CronManager } from '@pushrocks/smarrtime';
const cronManagerInstance = new CronManager();
cronManagerInstance.addConrjob('* * * * * *', async () => {
console.log('hello'); // will log 'hello' to console once every second;
})
cronManagerInstance.start();class ExtendedDate
This class offers static functions to create zone specific JavaScript dates from European formated time strings.
import { ExtendedDate } from '@pushrocks/smarttime'
const myDate: Date = ExtendedDate.fromEuropeanDate('8.6.2018')For further information read the linked docs at the top of this readme.
MIT licensed | © Lossless GmbH | By using this npm module you agree to our privacy policy