app.provider('userData', function () { 'use strict'; var _this = this, data = { userData: {}, live: true }; angular.extend(this, { getUser: function () { return data.userData; } }); this.$get = function () { return _this; }; });