camelcase to hyphenated javascript

JavaScript
let dashed = camel.replace(/[A-Z]/g, m => "-" + m.toLowerCase());
Source

Also in JavaScript: