module FFaker::IdentificationPL

def pesel_century_differentiator(year)

def pesel_century_differentiator(year)
  case year
  when 1800..1899 then 80
  when 2000..2099 then 20
  when 2100..2199 then 40
  when 2200..2299 then 60
  else 0
  end
end