UNPKG

e-lado

Version:

[![CircleCI](https://circleci.com/gh/sharetribe/sharetribe/tree/master.svg?style=svg)](https://circleci.com/gh/sharetribe/sharetribe/tree/master) [![Dependency Status](https://gemnasium.com/sharetribe/sharetribe.png)](https://gemnasium.com/sharetribe/shar

15 lines (11 loc) 262 B
var rimraf = require('rimraf') function removeSync (dir) { return rimraf.sync(dir) } function remove (dir, callback) { return callback ? rimraf(dir, callback) : rimraf(dir, function () {}) } module.exports = { remove: remove, removeSync: removeSync }