UNPKG

agenda

Version:

Light weight job scheduler for Node.js

12 lines (10 loc) 192 B
import { Job } from "."; /** * Allows job type to run * @name Job#enable * @function */ export const enable = function (this: Job): Job { this.attrs.disabled = false; return this; };