Ruckus
inline fun <R> NodeList.map(transform: (Node) -> R): List<R> = List(this.length) { transform(item(it)) }