标签: javascript ecmascript-6 es6-modules
以下情况:
export * from "./function-file' export * from "./second-func-file' export * from "./third-component'
在文件夹的索引文件中。我的问题是,是否存在任何性能缺陷:
import {function} from dir-index
而不是单独要求每个文件:const func = require("file")
const func = require("file")