Start Case Table Keys

Have a lot of tables in camelCase and/or with ugly keys? here is a little global function to make table keys consistently pretty and in Start Case.

function collectionToStartCase(collection) { 
  return collection.map(item => _.mapKeys(item, (value, key) =>  _.startCase(key)))
}

This way you don't have to manually change all the key names :slight_smile:

Wish that this was the default for tables