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

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

There is a newer version: 3.3.1
Show newest version
export default function capitalize(str) {
  const result = str === null || str === undefined ? "" : String(str);
  return result.charAt(0).toUpperCase() + result.slice(1);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy