Faker().relationship

Dictionary file
en:
  faker:
    relationship:
      familial:
        direct: ['Father', 'Mother', 'Sister', 'Brother']
        extended: ['Grandfather', 'Grandmother', 'Uncle', 'Aunt', 'Cousin', 'Niece', 'Nephew', 'Grandson', 'Granddaughter']
      in_law: ['Father-in-law', 'Mother-in-law', 'Sister-in-law', 'Brother-in-law']
      spouse: ['Husband', 'Wife']
      parent: ['Father', 'Mother']
      sibling: ['Sister', 'Brother']
Available Functions
Faker().relationship.familialDirect() // => Father

Faker().relationship.familialExtended() // => Grandfather

Faker().relationship.familial()// => Grandmother

Faker().relationship.inLaw()// => Father-in-law

Faker().relationship.spouse()// => Husband

Faker().relationship.parent()// => Father

Faker().relationship.sibling()// => Sister