laboiteproject/lenuage

View on GitHub
gulp/tasks/clean.js

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Dependencies
 */
const del = require('del');

/**
 * Module body / Expose
 */
module.exports = (entry, config) => {
  config = config || {};
  return del(entry, config);
};