UNPKG

rsuite

Version:

A suite of react components

8 lines 202 B
'use client'; export function getAnimationEnd() { const style = document.createElement('div').style; if ('webkitAnimation' in style) { return 'webkitAnimationEnd'; } return 'animationend'; }