Files
dsabot/functions/Capitalize.js
TobenderZephyr ba63be64dd merge dev branch (more tests) (#47)
* more tests and bugfixes on spells

* linting
2021-05-06 19:35:58 +00:00

4 lines
120 B
JavaScript

const Capitalize = (Word = 'none') => `${Word[0].toUpperCase() + Word.substring(1)}`;
module.exports = { Capitalize };