UNPKG

gorillajs

Version:

A smart development environment designed to easily install and neatly manage web applications. Gorilla JS frees you from the repetitive daily tasks like apps installation, database management, creation of virtual environment, server configuration… And it

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 }