UNPKG

gobem-proc-filter

Version:

Processor to filter empty files for gobem builder.

11 lines (9 loc) 224 B
'use strict'; module.exports = function () { return { process: function (next, input, output, config, content, path) { if (content) output.set(path, content); next(); } }; };