Files @ 10cc96b72610
Branch filter:

Location: symposion_app/gulp/tasks/clean.js

Sachi King
Remove metron

Not used - old/depricated name
/**
 * Dependencies
 */
const del = require('del');

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