cletus/node_modules/agenda/dist/job/disable.js
2025-05-09 15:53:19 -05:00

14 lines
No EOL
327 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.disable = void 0;
/**
* Prevents the job type from running
* @name Job#disable
* @function
*/
const disable = function () {
this.attrs.disabled = true;
return this;
};
exports.disable = disable;
//# sourceMappingURL=disable.js.map