()
| 409 | } |
| 410 | |
| 411 | getCSS(): string { |
| 412 | this.removeDuplicates(); |
| 413 | return ( |
| 414 | this.base.join("") + |
| 415 | this.responsive.join("") + |
| 416 | this.pseudo.join("") + |
| 417 | this.css.join("") |
| 418 | ); |
| 419 | } |
| 420 | |
| 421 | reset() { |
| 422 | this.base = []; |
no test coverage detected