aboutsummaryrefslogtreecommitdiff
path: root/node_modules/dom-walk/example/index.js
blob: 1824012df8e92f85f3c9165ffa5fb80ba4092068 (plain)
1
2
3
4
5
var walk = require("../index")

walk(document.body.childNodes, function (node) {
    console.log("node", node)
})