Package detail

resolve-async

thejameskyle4.8kMIT1.0.1

Typed async resolve function

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"
});