Files @ 0160b2314003
Branch filter:

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

Joshua Simmons
refine copy, look at quotes, dashes, capitalization etc
/**
 * Dependencies
 */
const del = require('del');

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