mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-07-19 01:17:18 +00:00
15 lines
200 B
JavaScript
15 lines
200 B
JavaScript
let list = [];
|
|
|
|
export const add = (el, name, fn) => {
|
|
list.push([
|
|
el,
|
|
name,
|
|
fn,
|
|
]);
|
|
};
|
|
|
|
export const clear = () => {
|
|
list = [];
|
|
};
|
|
|
|
export const get = () => list;
|