All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.inflected.src.capitalize.js Maven / Gradle / Ivy

The newest version!
export default function capitalize(str) {
  const result = str === null || str === undefined ? "" : String(str);
  return result.charAt(0).toUpperCase() + result.slice(1);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy