npm.io
1.0.0 • Published 9 years ago

read-file-async

Licence
MIT
Version
1.0.0
Deps
2
Vulns
0
Weekly
0

read-file-async

Typed async readFile function

// @flow
import readFileAsync from 'read-file-async';

readFileAsync('path/to/file.txt').then(buffer => {
  console.log(buffer.toString());
});