resolve-async
v1.0.1
Published
Typed async resolve function
Downloads
20,427
Readme
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"
});