mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-07-18 08:56:20 +00:00
8 lines
163 B
JavaScript
8 lines
163 B
JavaScript
export const getUserMenu = (menuFn) => {
|
|
const module = {};
|
|
const fn = Function('module', menuFn);
|
|
|
|
fn(module);
|
|
|
|
return module.exports;
|
|
};
|