module PostcodeSanitizer IrresponsibleModule PostcodeSanitizer has no descriptive comment def self.call(postcode) postcode.to_s.gsub(/\s+|-+|–+|—+/, "").upcase end end