UNPKG

test-real-styles

Version:

utilities to test real styling of dom elements

8 lines (6 loc) 225 B
import kebabCase from 'lodash.kebabcase'; export function toCss(style: { [key: string]: string }): string { return Object.keys(style) .map((key) => `${kebabCase(key).toLowerCase()}: ${style[key]};`) .join('\n'); }