Turn strings into readable names
"personFirstName" becomes "Person First Name"
Handles weird characters, different casings, most of what you can throw at it
npm install --save readable-name
const readableName = require('readableName');
let readable = readableName('someConcatenatedTitle');
console.log(readable);
// Some Concatenated Title
ISC