Website/node_modules/metalsmith-drafts/lib/index.js
2015-12-02 18:21:44 -05:00

22 lines
363 B
JavaScript

/**
* Expose `plugin`.
*/
module.exports = plugin;
/**
* Metalsmith plugin to hide drafts from the output.
*
* @return {Function}
*/
function plugin(){
return function(files, metalsmith, done){
setImmediate(done);
Object.keys(files).forEach(function(file){
var data = files[file];
if (data.draft) delete files[file];
});
};
}