Detalhes do pacote

read-file-async

thejameskyle5.3kMIT1.0.0

Typed async readFile function

readme (leia-me)

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