read-file-async

Typed async readFile function

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
read-file-async
1.0.06 years ago6 years agoMinified + gzip package size for read-file-async in KB

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