1import * as _ from 'lodash-es'23export const dash1Case = (str: string): string => _.snakeCase(str).replace(/_/g, '-')4