Files
projet_gestion_commande/frontend-admin/node_modules/css-in-js-utils/es/cssifyDeclaration.js
T
2026-02-07 22:33:02 +01:00

4 lines
167 B
JavaScript

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