Skip to content

Instantly share code, notes, and snippets.

@jugglinmike
Created January 10, 2015 21:17
Show Gist options
  • Save jugglinmike/86fd5a30d53560378278 to your computer and use it in GitHub Desktop.
Save jugglinmike/86fd5a30d53560378278 to your computer and use it in GitHub Desktop.
Utility function for JSHint
function isStmtBoundary(first, second) {
if (first.id === "(begin)" || first.id === ";") {
return true;
}
if (first.left || first.arity === "unary" || first.exps) {
return false;
}
return !isEndOfStmt(second) && !isInfix(second) && first.line !== second.line;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment