Version 1
[yaffs-website] / node_modules / dom-walk / README.md
1 # dom-walk
2
3 iteratively walk a DOM node
4
5 ## Example
6
7 ``` js
8 var walk = require("dom-walk")
9
10 walk(document.body.childNodes, function (node) {
11     console.log("node", node)
12 })
13 ```
14
15 ## Installation
16
17 `npm install dom-walk`
18
19 ## Contributors
20
21  - Raynos
22
23 ## MIT Licenced