Created
January 28, 2015 13:03
-
-
Save codedmart/37538de50958579e2c89 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Immstruct = require('immstruct'); | |
// How do I select otherStuff {id: 3, name: 'Name'} | |
var Structure = Immstruct({ | |
stuff: {}, | |
otherStuff: [ | |
{id: 1, name: 'test'}, | |
{id: 2, name:'Output'}, | |
{id: 3, name: 'Name'}, | |
{id: 4, name: 'Other'} | |
], | |
comments: [ | |
{id: 0, body: 'Here is comment #1'}, | |
{id: 1, body: 'Here is comment #2'}, | |
{id: 2, body: 'Here is comment #3'} | |
] | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment