mirror of
https://github.com/biobulkbende/biobulkbende.org.git
synced 2025-01-14 03:56:23 +00:00
17 lines
238 B
JavaScript
17 lines
238 B
JavaScript
|
'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;
|