0.0.1 • Published 8 years ago

h2io-utils v0.0.1

Weekly downloads
1
License
ISC
Repository
-
Last release
8 years ago

H2io - Utils

Installation

npm install h2io-utils

Usage

import {
  createDirectory,
  ifExists,
} from 'h2io-utils';

createDirectory('www')
  .then((done) => console.log(done))
  .catch((e) => console.error(e));

ifExists('src')
  .then((stats) => console.log(stats))
  .catch((e) => console.error(e));