0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-24 16:22:44 +00:00

Rename toWordsCamel to toWordsCaps

This commit is contained in:
G.Ambatte
2025-03-14 08:08:30 +13:00
parent baafb6d2f9
commit f4afc91df7
2 changed files with 3 additions and 3 deletions

View File

@@ -95,7 +95,7 @@ mathParser.functions.toWordsUpper = function (a) {
mathParser.functions.toWordsLower = function (a) {
return mathParser.functions.toWords(a).toLowerCase();
};
mathParser.functions.toWordsCamel = function (a) {
mathParser.functions.toWordsCaps = function (a) {
const words = mathParser.functions.toWords(a).split(' ');
return words.map((word)=>{
return word.replace(/(?:^|\b|\s)(\w)/g, function(w, index) {