Files @ 3f6e5ac3d151
Branch filter:

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

Brett Smith
homepage: Swap out CfP link for ticket sales.
/**
 * Dependencies
 */
const del = require('del');

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