Files @ e65d19adc091
Branch filter:

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

e65d19adc091 180 B application/javascript Show Source Show as Raw Download as Raw
Joshua Simmons
updating nav - copy editing and making it shorter
/**
 * Dependencies
 */
const del = require('del');

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