/**
* Convert an identifier string to a dash form
*
* @param input The identifier string
* @returns the ientifier in dash form
*/exportfunctiontoDashCase(input) {
return input.trim().replace(/[-_.\s]+\w/ug, c =>`-${c.slice(-1)}`).toLowerCase();
}
exportdefault toDashCase;