UNPKG
react-input-mask-plus
Version:
latest (1.2.1)
1.2.1
1.2.0
1.1.1
1.1.0
1.0.8
1.0.7
0.9.1
0.9.0
0.8.4
0.8.3
0.8.2
0.8.1
0.8.0
Masked input component for React
github.com/sanniassin/react-input-mask
sanniassin/react-input-mask
react-input-mask-plus
/
es
/
utils
/
defer.js
7 lines
(6 loc)
•
221 B
JavaScript
View Raw
1
2
3
4
5
6
7
export
default
function
(
fn
) {
var
defer =
window
.
requestAnimationFrame
||
window
.
webkitRequestAnimationFrame
||
window
.
mozRequestAnimationFrame
||
function
(
) {
return
setTimeout
(fn,
0
); };
return
defer
(fn); }