UNPKG

are-message

Version:

This is a React global notification message component. It is a standalone implementation of the are-visual message component.

9 lines (8 loc) 184 B
function timeout(callback, duration) { var timer = window.setTimeout(function () { callback(); clearTimeout(timer); }, duration); return timer; } export default timeout;