Files @ bf1711ac663b
Branch filter:

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

bf1711ac663b 180 B application/javascript Show Source Show as Raw Download as Raw
Christopher Neugebauer
fixes stray comma
/**
 * Dependencies
 */
const del = require('del');

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