15 lines
No EOL
407 B
JavaScript
15 lines
No EOL
407 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.repeatAt = void 0;
|
|
/**
|
|
* Sets a job to repeat at a specific time
|
|
* @name Job#repeatAt
|
|
* @function
|
|
* @param time time to repeat job at (human readable or number)
|
|
*/
|
|
const repeatAt = function (time) {
|
|
this.attrs.repeatAt = time;
|
|
return this;
|
|
};
|
|
exports.repeatAt = repeatAt;
|
|
//# sourceMappingURL=repeat-at.js.map
|