mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-07-20 18:18:56 +00:00
20 lines
238 B
JavaScript
20 lines
238 B
JavaScript
'use strict';
|
|
|
|
let list = [];
|
|
|
|
module.exports.add = (el, name, fn) => {
|
|
list.push([
|
|
el,
|
|
name,
|
|
fn,
|
|
]);
|
|
};
|
|
|
|
module.exports.clear = () => {
|
|
list = [];
|
|
};
|
|
|
|
module.exports.get = () => {
|
|
return list;
|
|
};
|
|
|