Guest User

Untitled

a guest
Jun 18th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. tree: function(){
  2. var tree = {},
  3. nodes = this.nodes
  4. name;
  5. for (name in nodes) tree[name+' "'+nodes[name].value+'"'] = nodes[name].tree();
  6. return tree;
  7. }
Add Comment
Please, Sign In to add comment