| index.js |
|
1490 |
| LICENSE.md |
|
1303 |
| moz.build |
|
275 |
| pretty-fast.js |
eslint-disable complexity |
32604 |
| tests |
|
|
| worker.js |
By default prettyPrint will trim the text, and we'd have the pretty text displayed
just after the script tag, e.g.:
```
<script>if (true) {
something()
}
</script>
```
We want the text to start on a new line, so prepend a line break, so we get
something like:
```
<script>
if (true) {
something()
}
</script>
```
|
2481 |