diff options
Diffstat (limited to 'node_modules/dom-walk/README.md')
-rw-r--r-- | node_modules/dom-walk/README.md | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/node_modules/dom-walk/README.md b/node_modules/dom-walk/README.md new file mode 100644 index 000000000..9e33dd155 --- /dev/null +++ b/node_modules/dom-walk/README.md @@ -0,0 +1,23 @@ +# dom-walk + +iteratively walk a DOM node + +## Example + +``` js +var walk = require("dom-walk") + +walk(document.body.childNodes, function (node) { + console.log("node", node) +}) +``` + +## Installation + +`npm install dom-walk` + +## Contributors + + - Raynos + +## MIT Licenced
\ No newline at end of file |