Files @ fad9c76d8fb7
Branch filter:

Location: symposion_app/gulp/tasks/clean.js

Nick Seidenman
Update README.rst
/**
 * Dependencies
 */
const del = require('del');

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