Files
openzeppelin-contracts/test/helpers/strings.js
2024-04-04 01:15:30 +02:00

6 lines
180 B
JavaScript

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