generator-easy
Version:
An EASY stack generator, Express Angular Stylus Yeoman
26 lines (20 loc) • 510 B
JavaScript
;
angular.module('<%= _.camelize(appname) %>App')
.provider('<%= _.camelize(name) %>', function () {
// Private variables
var salutation = 'Hello';
// Private constructor
function Greeter() {
this.greet = function () {
return salutation;
};
}
// Public API for configuration
this.setSalutation = function (s) {
salutation = s;
};
// Method for instantiating
this.$get = function () {
return new Greeter();
};
});