* Minify * * @param {(string|*)} output * @return {string}
(output)
| 23537 | * @return {string} |
| 23538 | */ |
| 23539 | function minify (output) { |
| 23540 | return output |
| 23541 | .replace(formatptn, '') |
| 23542 | .replace(beforeptn, '') |
| 23543 | .replace(afterptn, '$1') |
| 23544 | .replace(tailptn, '$1') |
| 23545 | .replace(whiteptn, ' ') |
| 23546 | } |
| 23547 | |
| 23548 | /** |
| 23549 | * Use |