Last active
January 10, 2018 10:46
-
-
Save renatoargh/13f6b94325606034a97a54466469d6c3 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
| const { | |
| name, | |
| favoriteColor = 'red' | |
| } = user |
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
| const assert = require('assert') | |
| const { | |
| name, | |
| favoriteColor = 'red' | |
| } = user | |
| assert(name, 'name is mandatory') |
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
| const { fail } = require('assert') | |
| const { | |
| name = fail('name is mandatory'), | |
| favoriteColor = 'red' | |
| } = user |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment