Get.prototype.filter = function(name, value, operator) {
  if (typeof operator === 'undefined') {
    operator = '=';
  }
  if (operator != '=' && operator != '<' && operator != '>' && operator != '<=' && operator != '>=') {