merge dev branch (more tests) (#47)
* more tests and bugfixes on spells * linting
This commit is contained in:
@ -1,5 +1,3 @@
|
||||
const Capitalize = (Word = 'none') => {
|
||||
return Word[0].toUpperCase() + Word.substring(1);
|
||||
};
|
||||
const Capitalize = (Word = 'none') => `${Word[0].toUpperCase() + Word.substring(1)}`;
|
||||
|
||||
module.exports = { Capitalize };
|
||||
|
Reference in New Issue
Block a user