UNPKG

rmwc

Version:

A thin React wrapper for Material Design (Web) Components

11 lines (9 loc) 238 B
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); var toDashCase = exports.toDashCase = function toDashCase(str) { return str.replace(/([A-Z])/g, function ($1) { return '-' + $1.toLowerCase(); }); };