1 | import camelCaseProperty from './camelCaseProperty';
|
2 | import unprefixProperty from './unprefixProperty';
|
3 | export default function normalizeProperty(property) {
|
4 | return unprefixProperty(camelCaseProperty(property));
|
5 | } |
\ | No newline at end of file |