class Faker::Code

def npi

issued to health care providers in the United States)
Generates a 10 digit NPI (National Provider Identifier
def npi
  rand(10**10).to_s.rjust(10, '0')
end