root 3bf41bf355 update | 1 yıl önce | |
---|---|---|
.. | ||
node_modules | 1 yıl önce | |
index.d.ts | 1 yıl önce | |
index.js | 1 yıl önce | |
license | 1 yıl önce | |
package.json | 1 yıl önce | |
readme.md | 1 yıl önce |
Import a module like with
require()
but from a given path
$ npm install import-from
const importFrom = require('import-from');
// There is a file at `./foo/bar.js`
importFrom('foo', './bar');
Like require()
, throws when the module can't be found.
Returns undefined
instead of throwing when the module can't be found.
Type: string
Directory to import from.
Type: string
What you would use in require()
.
Create a partial using a bound function if you want to import from the same fromDir
multiple times:
const importFromFoo = importFrom.bind(null, 'foo');
importFromFoo('./bar');
importFromFoo('./baz');
MIT © Sindre Sorhus