cortex-cms/cortex

View on GitHub
node_package/src/helpers/formatting.jsx

Summary

Maintainability
A
0 mins
Test Coverage
const capitalize = (text) => text[0].toUpperCase() + text.substring(1)

export {
  capitalize
}