Skip to content

Instantly share code, notes, and snippets.

@ratul0
Last active November 27, 2015 10:48
Show Gist options
  • Select an option

  • Save ratul0/680bbdfe3a6f2281dfdb to your computer and use it in GitHub Desktop.

Select an option

Save ratul0/680bbdfe3a6f2281dfdb to your computer and use it in GitHub Desktop.
Angular Service Source
function service (name, constructor) {
return factory(name,['$injector', function ($injector) {
return $injector.instantiate(constructor);
}]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment