UNPKG

pongular

Version:

AngularJS dependency injection ripped out for use on the server.

16 lines (14 loc) 301 B
'use strict'; var pongular = require('../../../lib/pongular').pongular; module.exports = pongular .module('service.animal', []) .service('ServiceAnimal', function() { this.cow = function(color) { return { color: color, age: 1, weight: 500 }; }; }) ;