var app = angular.module('app', ['underscore']);
app.controller('AppController', ['$scope', '_', function ($scope, _) {
initialize = function () {
_.keys($scope);
}
initialize();
}]);
underscore.factory('_', function () {
return window._;
});
return window._;
});