UNPKG

@atlaskit/eslint-plugin-design-system

Version:

The essential plugin for use with the Atlassian Design System.

6 lines 216 B
// convert line-height to lineHeight export var convertHyphenatedNameToCamelCase = function convertHyphenatedNameToCamelCase(prop) { return prop.replace(/-./g, function (m) { return m[1].toUpperCase(); }); };