Your IP : 216.73.216.91


Current Path : /var/node/inatote/Inatote-Backend/helpers/
Upload File :
Current File : /var/node/inatote/Inatote-Backend/helpers/upper-first.js

export default function upperFirst (word) {
  if (word.length === 1) {
    return word.toUpperCase()
  }
  return word.charAt(0).toUpperCase() + word.substring(1)
}