UNPKG

angular-odata-resources

Version:

Allows making fluent OData queries from angular resources

13 lines (10 loc) 252 B
angular.module('ODataResources'). factory('$odataProperty', [function() { var ODataProperty = function(input){ this.value = input; }; ODataProperty.prototype.execute = function(){ return this.value; }; return ODataProperty; }]);