Is there any way to import and export multiple files using for-of-loop (or another loop) in ES6?
const moduleNames = [\'NumberUtils\', \'StringUtils\', \'Arr
For multiple import files I found this solution:
const files = require.context('../myFolder', true, /(Module|Utils)\.js$/)