Files @ bc95ecb17f3b
Branch filter:

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

Josh Simmons
Merge branch 'master' of github.com:northbaypython/website
/**
 * Dependencies
 */
const del = require('del');

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