mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 10:45:47 +00:00
9 lines
152 B
JavaScript
9 lines
152 B
JavaScript
export default (menuFn) => {
|
|
const module = {};
|
|
const fn = Function('module', menuFn);
|
|
|
|
fn(module);
|
|
|
|
return module.exports;
|
|
};
|
|
|