18 lines
337 B
JavaScript
Vendored
18 lines
337 B
JavaScript
Vendored
'use strict'
|
|
|
|
const rimraf = require('./rimraf')
|
|
|
|
function removeSync (dir) {
|
|
return rimraf.sync(dir, {disableGlob: true})
|
|
}
|
|
|
|
function remove (dir, callback) {
|
|
const options = {disableGlob: true}
|
|
return callback ? rimraf(dir, options, callback) : rimraf(dir, options, function () {})
|
|
}
|
|
|
|
module.exports = {
|
|
remove,
|
|
removeSync
|
|
}
|