1.0.5 • Published 1 year ago

aws-cron-expression-validator v1.0.5

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

AWS eventBridge schedule cron expression parser

Validate aws cron expression

    const { awsCronExpressionValidator } = require('aws-cron-expression-validator')
    const valid = awsCronExpressionValidator('0 12 ? * MON-FRI *')
    /** if it's valid it will return object 
    *return {
    *  minute,
    *  hour,
    *  dayOfMonth,
    *  month,
    *  dayOfWeek,
    *  year,
    *  expression
    * }
    **/
    // if it's invalid it will throw exception.
1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago