kwhitley / treeize

Converts row data (in JSON/associative array format) to tree structure based on column naming conventions.
MIT License
189 stars 24 forks source link

deep object nodes without signatures at each level #24

Closed kwhitley closed 10 years ago

kwhitley commented 10 years ago

A) should a signature even be required for a collection entry?

[{ 'id': 1, 'a:b:c:d': 'foo' }]

should grow to:

[{
  id: 1,
  a: { 
    b: {
      c: {
        d: 'foo'
      }
    }
  }
}]

NOTES

kwhitley commented 10 years ago

Working... I think...