Skip to content

Instantly share code, notes, and snippets.

@khaosdoctor
Created October 23, 2017 03:25
Show Gist options
  • Save khaosdoctor/97172be0b7e3af52242816d776c4d6bb to your computer and use it in GitHub Desktop.
Save khaosdoctor/97172be0b7e3af52242816d776c4d6bb to your computer and use it in GitHub Desktop.
function foo () {
export default 'bar' // Syntax Error
}
foo()
// --- //
function foo () {
return 'bar'
}
export default foo // OK!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment