UNPKG

jest-html

Version:

Preview Jest snapshots right in your browser

17 lines (13 loc) 404 B
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); var MS_PATTERN = /^ms-/; var UPPERCASE_PATTERN = /([A-Z])/g; var hyphenate = function hyphenate(str) { return str.replace(UPPERCASE_PATTERN, '-$1').toLowerCase(); }; var hyphenateStyleName = function hyphenateStyleName(str) { return hyphenate(str).replace(MS_PATTERN, '-ms-'); }; exports.default = hyphenateStyleName;