Validates a CSS declaration using type-checking.
property
(string): The CSS property that should be validated (in camelCase)value
(string): The CSS value that is parsed and type-checked
(boolean) Indicator if the declaration is valid or invalid
import validate from 'bredon-validate'
validate('borderLeft', '1px solid rgba(100, 200, 50, .55)')
// => true
validate('borderLeft', '1px 2px rgba(100, 200, 50, .55)')
// => false