You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
238 B
17 lines
238 B
1 year ago
|
'use strict';
|
||
|
|
||
|
function task(name, fn) {
|
||
|
if (typeof name === 'function') {
|
||
|
fn = name;
|
||
|
name = fn.displayName || fn.name;
|
||
|
}
|
||
|
|
||
|
if (!fn) {
|
||
|
return this._getTask(name);
|
||
|
}
|
||
|
|
||
|
this._setTask(name, fn);
|
||
|
}
|
||
|
|
||
|
module.exports = task;
|