/** * Copyright (c) Nicolas Gallagher. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow strict-local */ import unitlessNumbers from './unitlessNumbers'; import normalizeColor from './normalizeColor'; const colorProps = { backgroundColor: true, borderColor: true, borderTopColor: true, borderRightColor: true, borderBottomColor: true, borderLeftColor: true, color: true, shadowColor: true, textDecorationColor: true, textShadowColor: true }; declare export default function normalizeValueWithProperty(value: any, property?: ?string): any;