aboutsummaryrefslogtreecommitdiff
path: root/lib/tree.js
AgeCommit message (Collapse)AuthorFilesLines
2014-09-21[api] Removed tree module. This code should be in a separate project.Marak1-73/+0
2014-09-21[api] Added hacker module. Added default values for all methods. Cleaned up ↵Marak1-0/+4
errant methods. Added mustache helper.
2014-05-17Moving to major new version for change of package name for uppercase to ↵FotoVerite1-1/+1
lowercase.
2013-11-05My take on separating male and female names. Tests passing, Coverage restored.cyanos31-8/+2
2013-11-05Tree: let the width parameter also be a function that returns an intcyanos31-2/+13
2013-11-05Refactor tree so that it will work with the module model. (Not working at ↵cyanos31-50/+47
all prior)
2013-11-05Add tree:cyanos31-0/+67
createTree(depth, width, obj) where - depth is the distance from the root to the farthest node - width is the number of children to add to each node - each property/value pair in obj contains a value that will be evaluated to get the final result. The property that contains the array of child nodes should have the value of "__RECURSE__"