UNPKG

devexpress-reporting-react

Version:

DevExpress Reporting React provides the capability to develop a reporting application to create and customize reports.

10 lines (9 loc) 316 B
const toCamelCase = style => style.replace(/-([a-z])/g, (_, char) => char.toUpperCase()); export const processStyles = styles => { const newStyles = {}; for (const style in styles) { const reactStyle = toCamelCase(style); newStyles[reactStyle] = styles[style]; } return newStyles; };