UNPKG

279 BJavaScriptView Raw
1/*import beautify from 'js-beautify'
2
3function beautifyJS(str) {
4 return beautify.js_beautify(str, { indent_size: 4 })
5}
6
7function beautifyCSS(str) {
8 return beautify.css_beautify(str, { indent_size: 4 })
9}
10
11export default {
12 beautifyJS,
13 beautifyCSS
14}*/
\No newline at end of file