You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
323 B
19 lines
323 B
'use strict'
|
|
|
|
module.exports = all
|
|
|
|
// Visit all children of `parent`.
|
|
function all(parent) {
|
|
var self = this
|
|
var children = parent.children
|
|
var length = children.length
|
|
var results = []
|
|
var index = -1
|
|
|
|
while (++index < length) {
|
|
results[index] = self.visit(children[index], parent)
|
|
}
|
|
|
|
return results
|
|
}
|