This repository has been archived on 2023-11-10. You can view files and clone it, but cannot push or open issues or pull requests.
freecodecamp-projects/7-quality-assurance/5-american-british-translator/components/american-to-british-titles.js

8 lines
116 B
JavaScript

module.exports = {
'mr.': 'mr',
'mrs.': 'mrs',
'ms.': 'ms',
'mx.': 'mx',
'dr.': 'dr',
'prof.': 'prof'
}