7 lines
147 B
JavaScript
7 lines
147 B
JavaScript
|
|
||
|
function camelToSnake(str) {
|
||
|
return str.replace(/[A-Z]/g, match => `-${match.toLowerCase()}`);
|
||
|
}
|
||
|
|
||
|
module.exports.camelToSnake = camelToSnake;
|