mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
8 lines
220 B
TypeScript
8 lines
220 B
TypeScript
import * as HTMLMinifier from 'html-minifier';
|
|
const minify = HTMLMinifier.minify;
|
|
|
|
const result = minify('<p title="blah" id="moo">foo</p>', {
|
|
removeAttributeQuotes: true
|
|
});
|
|
result; // '<p title=blah id=moo>foo</p>'
|