function toKebabCase()

in scripts/generate.js [123:125]


function toKebabCase(name) {
  return name.replace(/([A-Z])/g, '-$1').toLowerCase();
}