-
-
Save akagomez/5a82037f8a47aecb648a to your computer and use it in GitHub Desktop.
This file contains hidden or 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 Example = Map.extend({ }, { | |
define: { | |
name: { | |
value: 'Nailed it' | |
} | |
} | |
}); | |
var NestedMap = Map.extend({ }, { | |
define: { | |
isEnabled: { | |
value: true | |
}, | |
test: { | |
Value: Example | |
}, | |
examples: { | |
value: { | |
define: { | |
one: { | |
Value: Example | |
}, | |
two: { | |
value: { | |
define: { | |
deep: { | |
Value: Example | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment