* (Internal) Gets a space separated list of the class names on the element. * The list is wrapped with a single space on each end to facilitate finding * matches within the list.
(element)
| 460 | */ |
| 461 | |
| 462 | function classList(element) { |
| 463 | return (' ' + (element.className || '') + ' ').replace(/\s+/gi, ' '); |
| 464 | } |
| 465 | |
| 466 | /** |
| 467 | * (Internal) Removes an element from the DOM. |
no outgoing calls
no test coverage detected