From 5316f4e8b46ee230a451b1ebde0a855d2da4739e Mon Sep 17 00:00:00 2001 From: Robert Mennell Date: Fri, 19 Oct 2018 17:58:40 +0200 Subject: [PATCH] Update snippets/toTitleCase.md Co-Authored-By: ccjmne --- snippets/toTitleCase.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/toTitleCase.md b/snippets/toTitleCase.md index 2ae492d78..bdd601c0e 100644 --- a/snippets/toTitleCase.md +++ b/snippets/toTitleCase.md @@ -7,7 +7,7 @@ Break the string into words, using a regexp, and combine them capitalizing the f ```js const toTitleCase = str => str .match(/[A-Z]{2,}(?=[A-Z][a-z]+[0-9]*|\b)|[A-Z]?[a-z]+[0-9]*|[A-Z]|[0-9]+/g) - .map(x => x.charAt(0).toUpperCase() + x.slice(1).toLowerCase()) + .map(x => x.charAt(0).toUpperCase() + x.slice(1)) .join(' '); ```