in index.js [520:527]
function _joinNodes (nodeList, text) {
return nodeList.map(function (node) {
return [node, text]
}).reduce(function (result, pair, index, pairs) {
if (index === pairs.length - 1) pair.pop()
return result.concat(pair)
}, [])
}