helpers.js 288 B

12345678910
  1. const iterate = require('../test/helpers/iterate');
  2. module.exports = {
  3. // Capitalize the first char of a string
  4. // Example: capitalize('uint256') → 'Uint256'
  5. capitalize: str => str.charAt(0).toUpperCase() + str.slice(1),
  6. // Iterate tools for the test helpers
  7. ...iterate,
  8. };