Skip to content

Instantly share code, notes, and snippets.

@codedmart
Created January 28, 2015 13:03
Show Gist options
  • Save codedmart/37538de50958579e2c89 to your computer and use it in GitHub Desktop.
Save codedmart/37538de50958579e2c89 to your computer and use it in GitHub Desktop.
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