Mark caesar as archived and move archived exercise to own folder (#336)

This commit is contained in:
Asartea
2023-03-18 22:45:37 +01:00
committed by GitHub
parent 6f5f71ff5b
commit 75869d1912
15 changed files with 0 additions and 0 deletions
@@ -0,0 +1,19 @@
const snakeCase = function (string) {
// wtf case
string = string.replace(/\.\./g, " ");
// this splits up camelcase IF there are no spaces in the word
if (string.indexOf(" ") < 0) {
string = string.replace(/([A-Z])/g, " $1");
}
return string
.trim()
.toLowerCase()
.replace(/[,\?\.]/g, "")
.replace(/\-/g, " ")
.split(" ")
.join("_");
};
module.exports = snakeCase;