1
0
Fork 0
arangodb/js/node/node_modules/eslint/node_modules/resolve-from
Alan Plum cf302adf26
Always use --global-style when installing npm deps
This partially reverts commit 8a286a30d9.
2016-07-14 16:29:20 +02:00
..
index.js Always use --global-style when installing npm deps 2016-07-14 16:29:20 +02:00
license Always use --global-style when installing npm deps 2016-07-14 16:29:20 +02:00
package.json Always use --global-style when installing npm deps 2016-07-14 16:29:20 +02:00
readme.md Always use --global-style when installing npm deps 2016-07-14 16:29:20 +02:00

readme.md

resolve-from Build Status

Resolve the path of a module like require.resolve() but from a given path

Install

$ npm install --save resolve-from

Usage

const resolveFrom = require('resolve-from');

// there's a file at `./foo/bar.js`

resolveFrom('foo', './bar');
//=> '/Users/sindresorhus/dev/test/foo/bar.js'

API

resolveFrom(fromDir, moduleId)

fromDir

Type: string

The directory to resolve from.

moduleId

Type: string

What you would use in require().

Tip

Create a partial using a bound function if you want to require from the same fromDir multiple times:

const resolveFromFoo = resolveFrom.bind(null, 'foo');

resolveFromFoo('./bar');
resolveFromFoo('./baz');

License

MIT © Sindre Sorhus