Files @ f42aeb707e2a
Branch filter:

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

Christopher Neugebauer
Factors the display of an invoice into _invoice_details.html for reuse in e-mail bits.
/**
 * Dependencies
 */
const del = require('del');

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