odin-default-js-exercises/snakeCase/snakeCase.js

20 lines
409 B
JavaScript
Raw Normal View History

const snakeCase = function(string) {
// wtf case
string = string.replace(/\.\./g, " ");
2017-08-25 19:16:42 +00:00
// this splits up camelcase IF there are no spaces in the word
if (string.indexOf(" ") < 0) {
string = string.replace(/([A-Z])/g, " $1");
}
2017-08-25 19:16:42 +00:00
return string
.trim()
.toLowerCase()
.replace(/[,\?\.]/g, "")
.replace(/\-/g, " ")
.split(" ")
.join("_");
};
module.exports = snakeCase;