| 212 | value.match(extractRegExp).map(Number); |
| 213 | |
| 214 | const sanitize = values => |
| 215 | values.map(value => { |
| 216 | const string = String(value); |
| 217 | return string.startsWith("#") ? rgba(string) : string; |
| 218 | }); |
| 219 | |
| 220 | const addPropertyKeyframes = (property, values) => { |
| 221 | const animatable = sanitize(values); |
no test coverage detected