UNPKG

stylelint-taro-rn

Version:

A collection of React Native specific rules for stylelint

8 lines (7 loc) 224 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.kebabCase = void 0; const kebabCase = string => string.replace(/([a-z])([A-Z])/g, '$1-$2').toLowerCase(); exports.kebabCase = kebabCase;