DefinitelyTyped/types/cssbeautify/cssbeautify-tests.ts
2017-03-24 14:27:52 -07:00

14 lines
208 B
TypeScript

import cssbeautify = require('./index');
var str = '';
str = cssbeautify(str);
str = cssbeautify(str, {});
str = cssbeautify(str, {
indent: ' ',
openbrace: 'separate-line',
autosemicolon: true
});