({style}, keyframes)
| 26 | }; |
| 27 | |
| 28 | const accelerate = ({style}, keyframes) => |
| 29 | style.willChange = keyframes |
| 30 | ? keyframes.map(({property}) => property).join() |
| 31 | : "auto"; |
| 32 | |
| 33 | const createSVG = (element, attributes) => |
| 34 | Object.entries(attributes).reduce((node, [attribute, value]) => { |
no outgoing calls
no test coverage detected