class LastNameMatcher {
  supports = attr => {
    return attr && (attr.match(/last/gi) || attr.match(/middle/gi) || attr.match(/surname/gi));
  };