Plato on Github
Report Home
scripts/tmp-clean.js
Maintainability
90.35
Lines of code
16
Difficulty
5.56
Estimated Errors
0.07
Function weight
By Complexity
By SLOC
'use strict'; var del = require('del'); var config = { name: 'scripts:tmp-clean', callback: callback }; module.exports = config; ///////////////////////////// function callback(settings, done) { /*jshint validthis: true*/ del([settings.paths.tmp]).then(done.call(this)); }