Files
openzeppelin-contracts/test/helpers/strings.js
github-actions edf6031131 Update docs
2024-10-21 14:27:36 +00: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),
};