UNPKG

agenda

Version:

Light weight job scheduler for Node.js

12 lines (10 loc) 259 B
'use strict'; /** * Sets a job to repeat at a specific time * @param {String} time time to repeat job at (human readable or number) * @returns {exports} instance of Job */ module.exports = function(time) { this.attrs.repeatAt = time; return this; };