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.
16 lines
238 B
16 lines
238 B
'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;
|
|
|