Skip to content

Instantly share code, notes, and snippets.

@arestov
Last active August 29, 2015 14:13
Show Gist options
  • Save arestov/907a5ef74ea6b76e0812 to your computer and use it in GitHub Desktop.
Save arestov/907a5ef74ea6b76e0812 to your computer and use it in GitHub Desktop.
// SNAPSHOT 1
{ //root of big structure
nest: [
bignestedPart1 : { //Big nested part 1
prop: bignestedPart2 //Big nested part 2,
//other props
},
bignestedPart3: {}
]
}
// SNAPSHOT 2
{ //root of big structure
nest: [
bignestedPart3: {},
bignestedPart2: {},
bignestedPart1 : {
prop: null
//other props
}
]
}
// DIFF
// bignestedPart2 moved to #1 place of nest,
// `nest` array order was changed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment