mirror of
https://github.com/fofolee/uTools-quickcommand.git
synced 2025-12-19 18:25:44 +08:00
16 lines
321 B
JavaScript
16 lines
321 B
JavaScript
/**
|
|
* 快速导入同一目录下的所有脚本
|
|
*/
|
|
|
|
const importAll = context => {
|
|
const map = {}
|
|
for (const key of context.keys()) {
|
|
const keyArr = key.split('/')
|
|
keyArr.shift()
|
|
map[keyArr.join('.').replace(/\.js$/g, '')] = context(key)
|
|
}
|
|
return map
|
|
}
|
|
|
|
export default importAll
|