UNPKG

beyond

Version:

The Full Stack Universal Typescript Framework

12 lines (10 loc) 274 B
const minify = require('html-minifier').minify; module.exports = function (file, content) { try { const html = minify(content, {'removeComments': true}); return {html}; } catch (exc) { return {errors: [exc.message]}; } };