Files @ da1de53e5a06
Branch filter:

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

Christopher Neugebauer
Merge pull request #62 from northbaypython/copy

credit @sigje for her guidance on childcare, pumping rooms, quiet rooms etc
/**
 * Dependencies
 */
const del = require('del');

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