* @return {String} element's classes, if any.
(c)
| 469 | * @return {String} element's classes, if any. |
| 470 | */ |
| 471 | class(c) { |
| 472 | if (typeof c === 'undefined') { |
| 473 | return this.elt.className; |
| 474 | } |
| 475 | |
| 476 | this.elt.className = c; |
| 477 | return this; |
| 478 | } |
| 479 | |
| 480 | /** |
| 481 | * |
no outgoing calls
no test coverage detected