strings.js 180 B

12345
  1. module.exports = {
  2. // Capitalize the first char of a string
  3. // Example: capitalize('uint256') → 'Uint256'
  4. capitalize: str => str.charAt(0).toUpperCase() + str.slice(1),
  5. };