Files @ abed88031396
Branch filter:

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

Christopher Neugebauer
Adds first pass at credit_card_payment.html
/**
 * Dependencies
 */
const del = require('del');

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