Skip to content

Instantly share code, notes, and snippets.

@CamJN
Created September 25, 2017 14:15
Show Gist options
  • Save CamJN/b059ab90757f5205790572eaf22170a0 to your computer and use it in GitHub Desktop.
Save CamJN/b059ab90757f5205790572eaf22170a0 to your computer and use it in GitHub Desktop.
indentation test case
function s(action) {
switch(action.type) {
case SUBSCRIBE:
// TODO some comment here
// another line here
// line ending with a period .
resource = action.resourceDescription.resource;
return 0;
case UNSUBSCRIBE:
return 1;
default:
return 2;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment