Skip to content

Instantly share code, notes, and snippets.

@matthieuh
Created January 8, 2015 10:58
Show Gist options
  • Save matthieuh/a655355d44dea6a16426 to your computer and use it in GitHub Desktop.
Save matthieuh/a655355d44dea6a16426 to your computer and use it in GitHub Desktop.
Check if angular controller exist
controllerExist = (controllerStrg) ->
try
$controller controllerStrg
return false
catch error
return !(error instanceof TypeError)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment