api documentation for cron-parser (v2.4.0)

Node.js library for parsing crontab instructions

table of contents

  1. module cron-parser
    1. function cron-parser ()
    2. function cron-parser._parseEntry (entry)
    3. function cron-parser.date (timestamp, tz)
    4. function cron-parser.expression (fields, options)
    5. function cron-parser.parseExpression (expression, options, callback)
    6. function cron-parser.parseFile (filePath, callback)
    7. function cron-parser.parseString (data)
    8. object cron-parser.date.prototype
    9. object cron-parser.expression.prototype
  2. module cron-parser.date
    1. function cron-parser.date (timestamp, tz)
  3. module cron-parser.date.prototype
    1. function cron-parser.date.prototype._getUTC ()
    2. function cron-parser.date.prototype.addDay ()
    3. function cron-parser.date.prototype.addHour ()
    4. function cron-parser.date.prototype.addMinute ()
    5. function cron-parser.date.prototype.addMonth ()
    6. function cron-parser.date.prototype.addSecond ()
    7. function cron-parser.date.prototype.addYear ()
    8. function cron-parser.date.prototype.getDate ()
    9. function cron-parser.date.prototype.getDay ()
    10. function cron-parser.date.prototype.getFullYear ()
    11. function cron-parser.date.prototype.getHours ()
    12. function cron-parser.date.prototype.getMinutes ()
    13. function cron-parser.date.prototype.getMonth ()
    14. function cron-parser.date.prototype.getSeconds ()
    15. function cron-parser.date.prototype.getTime ()
    16. function cron-parser.date.prototype.getUTCDate ()
    17. function cron-parser.date.prototype.getUTCDay ()
    18. function cron-parser.date.prototype.getUTCFullYear ()
    19. function cron-parser.date.prototype.getUTCHours ()
    20. function cron-parser.date.prototype.getUTCMinutes ()
    21. function cron-parser.date.prototype.getUTCMonth ()
    22. function cron-parser.date.prototype.getUTCSeconds ()
    23. function cron-parser.date.prototype.setDate (d)
    24. function cron-parser.date.prototype.setDay (d)
    25. function cron-parser.date.prototype.setFullYear (y)
    26. function cron-parser.date.prototype.setHours (h)
    27. function cron-parser.date.prototype.setMinutes (m)
    28. function cron-parser.date.prototype.setMonth (m)
    29. function cron-parser.date.prototype.setSeconds (s)
    30. function cron-parser.date.prototype.subtractDay ()
    31. function cron-parser.date.prototype.subtractHour ()
    32. function cron-parser.date.prototype.subtractMinute ()
    33. function cron-parser.date.prototype.subtractMonth ()
    34. function cron-parser.date.prototype.subtractSecond ()
    35. function cron-parser.date.prototype.subtractYear ()
    36. function cron-parser.date.prototype.toDate ()
    37. function cron-parser.date.prototype.toISOString ()
    38. function cron-parser.date.prototype.toJSON ()
    39. function cron-parser.date.prototype.toString ()
  4. module cron-parser.expression
    1. function cron-parser.expression (fields, options)
    2. function cron-parser.expression._parseField (field, value, constraints)
    3. function cron-parser.expression.parse (expression, options, callback)
    4. object cron-parser.expression.aliases
    5. object cron-parser.expression.constraints
    6. object cron-parser.expression.daysInMonth
    7. object cron-parser.expression.map
    8. object cron-parser.expression.parseDefaults
    9. object cron-parser.expression.predefined
  5. module cron-parser.expression.prototype
    1. function cron-parser.expression.prototype._applyTimezoneShift (currentDate, method)
    2. function cron-parser.expression.prototype._findSchedule (reverse)
    3. function cron-parser.expression.prototype.hasNext ()
    4. function cron-parser.expression.prototype.hasPrev ()
    5. function cron-parser.expression.prototype.iterate (steps, callback)
    6. function cron-parser.expression.prototype.next ()
    7. function cron-parser.expression.prototype.prev ()
    8. function cron-parser.expression.prototype.reset ()

module cron-parser

function cron-parser ()

function cron-parser._parseEntry (entry)

function cron-parser.date (timestamp, tz)

function cron-parser.expression (fields, options)

function cron-parser.parseExpression (expression, options, callback)

function cron-parser.parseFile (filePath, callback)

function cron-parser.parseString (data)

module cron-parser.date

function cron-parser.date (timestamp, tz)

module cron-parser.date.prototype

function cron-parser.date.prototype._getUTC ()

function cron-parser.date.prototype.addDay ()

function cron-parser.date.prototype.addHour ()

function cron-parser.date.prototype.addMinute ()

function cron-parser.date.prototype.addMonth ()

function cron-parser.date.prototype.addSecond ()

function cron-parser.date.prototype.addYear ()

function cron-parser.date.prototype.getDate ()

function cron-parser.date.prototype.getDay ()

function cron-parser.date.prototype.getFullYear ()

function cron-parser.date.prototype.getHours ()

function cron-parser.date.prototype.getMinutes ()

function cron-parser.date.prototype.getMonth ()

function cron-parser.date.prototype.getSeconds ()

function cron-parser.date.prototype.getTime ()

function cron-parser.date.prototype.getUTCDate ()

function cron-parser.date.prototype.getUTCDay ()

function cron-parser.date.prototype.getUTCFullYear ()

function cron-parser.date.prototype.getUTCHours ()

function cron-parser.date.prototype.getUTCMinutes ()

function cron-parser.date.prototype.getUTCMonth ()

function cron-parser.date.prototype.getUTCSeconds ()

function cron-parser.date.prototype.setDate (d)

function cron-parser.date.prototype.setDay (d)

function cron-parser.date.prototype.setFullYear (y)

function cron-parser.date.prototype.setHours (h)

function cron-parser.date.prototype.setMinutes (m)

function cron-parser.date.prototype.setMonth (m)

function cron-parser.date.prototype.setSeconds (s)

function cron-parser.date.prototype.subtractDay ()

function cron-parser.date.prototype.subtractHour ()

function cron-parser.date.prototype.subtractMinute ()

function cron-parser.date.prototype.subtractMonth ()

function cron-parser.date.prototype.subtractSecond ()

function cron-parser.date.prototype.subtractYear ()

function cron-parser.date.prototype.toDate ()

function cron-parser.date.prototype.toISOString ()

function cron-parser.date.prototype.toJSON ()

function cron-parser.date.prototype.toString ()

module cron-parser.expression

function cron-parser.expression (fields, options)

function cron-parser.expression._parseField (field, value, constraints)

function cron-parser.expression.parse (expression, options, callback)

module cron-parser.expression.prototype

function cron-parser.expression.prototype._applyTimezoneShift (currentDate, method)

function cron-parser.expression.prototype._findSchedule (reverse)

function cron-parser.expression.prototype.hasNext ()

function cron-parser.expression.prototype.hasPrev ()

function cron-parser.expression.prototype.iterate (steps, callback)

function cron-parser.expression.prototype.next ()

function cron-parser.expression.prototype.prev ()

function cron-parser.expression.prototype.reset ()

[ this document was created with utility2 ]