UNPKG

361 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3function compact(options) {
4 const lines = options.fn(this).split('\n');
5 for (let i = 0, c = lines.length; i < c; i++) {
6 lines[i] = lines[i].trim().replace(/&nbsp;/, ' ');
7 }
8 return lines.join('');
9}
10exports.compact = compact;
11//# sourceMappingURL=compact.js.map
\No newline at end of file