14 lines
No EOL
327 B
JavaScript
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
|