@component-book/react
Version:
## Description
13 lines (11 loc) • 329 B
text/typescript
import js_beautify from 'js-beautify';
export function convertStringToBeautifyJs(value: string) {
return js_beautify.js(value.toString(), {
indent_size: 2,
space_in_empty_paren: true,
wrap_line_length: 40,
end_with_newline: true,
indent_empty_lines: true,
preserve_newlines: false,
});
}