2.0.0 • Published 5 years ago

@briansolon/import-all v2.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

import-all CircleCI

Given the path to a directory containing JavaScript files, returns an object containing all of their default and named exports with the module names as keys.

Installation

$ npm install --save @briansolon/import-all

Usage

import importAll from 'import-all'
const imports = importAll(`${__dirname}/directory`)

Credits

Uses code from charlieschwabacher/import-all and sindresorhus/import-modules.