Skip to content

Instantly share code, notes, and snippets.

@isaacs
Created June 2, 2017 23:55
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save isaacs/0d013bb96063f379242fba37f45ece63 to your computer and use it in GitHub Desktop.
Save isaacs/0d013bb96063f379242fba37f45ece63 to your computer and use it in GitHub Desktop.
'use strict'
const test = foo => {
switch (foo) {
case 'ok':
return console.log('this is fine')
/* istanbul ignore next */
default:
throw new Error('nope')
}
}
test('ok')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment