Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 770 Bytes

README.md

File metadata and controls

30 lines (19 loc) · 770 Bytes

Typed glob-stream

Greenkeeper badge Build Status

Typescript Typings for glob-stream.

Installation

typings install --save glob-stream

Usage

read = gs.create('./files/**/*.coffee',  { /* options */ });

read.on('data', (file: gs.Element) => {
  console.log(file.path, file.base, file.cwd);
});

Contributing

You can run them the tests with npm run build and npm run test.


_Based on typings by Bart van der Schoor