UNPKG

rmwc

Version:

A thin React wrapper for Material Design (Web) Components

6 lines (4 loc) 122 B
// @flow export const toDashCase = (str: string) => { return str.replace(/([A-Z])/g, $1 => '-' + $1.toLowerCase()); };