dd8f0ba9c5
Closes #3
12 lines
180 B
JavaScript
12 lines
180 B
JavaScript
/**
|
|
* Dependencies
|
|
*/
|
|
const del = require('del');
|
|
|
|
/**
|
|
* Module body / Expose
|
|
*/
|
|
module.exports = (entry, config) => {
|
|
config = config || {};
|
|
return del(entry, config);
|
|
};
|