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