UNPKG

@uwdata/mosaic-plot

Version:

A Mosaic-powered plotting framework based on Observable Plot.

10 lines (8 loc) 198 B
import { toKebabCase } from './to-kebab-case.js'; export function sanitizeStyles(styles) { const s = {}; for (const name in styles) { s[toKebabCase(name)] = styles[name]; } return s; }