()
| 1217 | this.formatted = void 0; |
| 1218 | } |
| 1219 | get range() { |
| 1220 | if (void 0 === this.formatted) { |
| 1221 | this.formatted = ""; |
| 1222 | for (let e = 0; e < this.set.length; e++) { |
| 1223 | e > 0 && (this.formatted += "||"); |
| 1224 | const t = this.set[e]; |
| 1225 | for (let e = 0; e < t.length; e++) |
| 1226 | (e > 0 && (this.formatted += " "), |
| 1227 | (this.formatted += t[e].toString().trim())); |
| 1228 | } |
| 1229 | } |
| 1230 | return this.formatted; |
| 1231 | } |
| 1232 | format() { |
| 1233 | return this.range; |
| 1234 | } |