0.1.5 • Published 4 years ago

html-browser-minifier v0.1.5

Weekly downloads
-
License
MIT
Repository
-
Last release
4 years ago

HTML cleaning tool that works in the browser based on https://github.com/kangax/html-minifier/

usage is

const minify = require('html-browser-minifier');
const minifiedText = minify(text, options);

Options are

{
  collapseBooleanAttributes = true,
  collapseWhitespace = true,
  removeNgAttributes = true,
  removeCssComments = true,
  removeHTMLComments = true,
  removeJS = true
}