UNPKG

react-apollo-testing-mock-gen

Version:
10 lines (9 loc) 180 B
const capitalize = (input) => { if (typeof input !== 'string') { return ''; } return input.charAt(0).toUpperCase() + input.slice(1); }; module.exports = { capitalize }