Files
marianesaldana 80dbd947e5 Initial commit
2026-05-23 08:59:34 -06:00

4 lines
167 B
JavaScript

import hyphenateProperty from './hyphenateProperty';
export default function cssifyDeclaration(property, value) {
return hyphenateProperty(property) + ':' + value;
}