Blame view

controllets/providers-utility-controllet/generic.js 183 Bytes
89558a41   Renato De Donato   datatype, provide...
1
2
3
4
5
6
7
8
9
  function generic_Provider () {}
  
  generic_Provider.prototype.selectData = function(data) {
      return data;
  };
  
  generic_Provider.prototype.addLimit = function(url) {
      return url;
  };