UNPKG

custom-app

Version:

ITIMS��Ʒ�鿪��ר��React���,�Dz��ý��ּ�dhcc-app���������

9 lines 333 B
/** * Normalizes the duration of a transition. * @param {number|object} duration The value to normalize. * @param {'hide'|'show'} type The type of transition. * @returns {number} */ export default (function (duration, type) { return typeof duration === 'number' || typeof duration === 'string' ? duration : duration[type]; });