Skip to content

Instantly share code, notes, and snippets.

@renatoargh
Last active January 10, 2018 10:46
Show Gist options
  • Save renatoargh/13f6b94325606034a97a54466469d6c3 to your computer and use it in GitHub Desktop.
Save renatoargh/13f6b94325606034a97a54466469d6c3 to your computer and use it in GitHub Desktop.
const {
name,
favoriteColor = 'red'
} = user
const assert = require('assert')
const {
name,
favoriteColor = 'red'
} = user
assert(name, 'name is mandatory')
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