UNPKG

167 BJavaScriptView Raw
1import hyphenateProperty from './hyphenateProperty';
2export default function cssifyDeclaration(property, value) {
3 return hyphenateProperty(property) + ':' + value;
4}
\No newline at end of file