summaryrefslogtreecommitdiff
path: root/src-migrate/libs/toTitleCase.ts
blob: dad66813c5ab4a42cdfd7726ce4592915091bc40 (plain)
1
2
3
4
5
export const toTitleCase = (val: string) => {
  return val.replace(/\w\S*/g, function (txt) {
    return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();
  });
};