Skip to content

Instantly share code, notes, and snippets.

@ratul0
Created November 27, 2015 10:24
Show Gist options
  • Select an option

  • Save ratul0/1c31efcf76da75a9a195 to your computer and use it in GitHub Desktop.

Select an option

Save ratul0/1c31efcf76da75a9a195 to your computer and use it in GitHub Desktop.
Angular source code for factory method
function factory (name, factoryFn, enforce) {
return provider(name,{
$get : enforce !== false ? enforceReturnValue(name,factoryFn) : factoryFn
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment