Skip to content

Commit de44d42

Browse files
committed
removed under dev flag and pumped version to 0.0.2
1 parent 5c16e0f commit de44d42

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
Async tree traversal for nodejs
22
===============================
33

4-
***under development!***
5-
64
<tt>tree-monkey</tt> takes a JSON or object literal tree of the form
75

86
{
@@ -26,11 +24,11 @@ The basic usage is as follows:
2624

2725
var monkey = require('tree-monkey')
2826
, tree = { ... };
29-
27+
3028
monkey.preOrder(tree, function (node, path, callback) {
3129
// do something async with the current node and/or path
3230
...
33-
31+
3432
// signal that you are done
3533
callback();
3634
});

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tree-monkey",
3-
"version": "0.0.1",
3+
"version": "0.0.2",
44
"description": "Async tree traversal for nodejs",
55
"main": "lib/tree-monkey.js",
66
"scripts": {

0 commit comments

Comments
 (0)