read-file-async
v1.0.0
Published
Typed async readFile function
Downloads
7,476
Readme
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());
});