Files @ f1b6e31c312a
Branch filter:

Location: CopyleftConf/copyleftconf-website/gulp/tasks/clean.js

Brett Smith
templates: Ask for support after invoice payment.
/**
 * Dependencies
 */
const del = require('del');

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