npm.io
1.0.1 • Published 9 years ago

resolve-async

Licence
MIT
Version
1.0.1
Deps
2
Vulns
0
Weekly
0
Stars
1

resolve-async

Typed async resolve function

// @flow
import resolveAsync from 'resolve-async';

resolveAsync('./file.js', { basedir: __dirname }).then(filePath => {
  console.log(filePath); // "/path/to/file.js"
});