UNPKG

@verdnatura/myt

Version:
8 lines (6 loc) 141 B
function camelToSnake(str) { return str.replace(/[A-Z]/g, match => `-${match.toLowerCase()}`); } module.exports = { camelToSnake };