UNPKG
kontrol
Version:
latest (0.0.1)
0.0.1
Make easier the use of events
kontrol
/
lib
/
eventoTemporal.js
9 lines
(7 loc)
•
195 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
var
eventoTemporal =
function
(
escucha , funcion
){
var
x =
0
;
var
nombre = ++x +
new
Date
(); escucha.
once
(nombre,funcion);
return
nombre; }
exports
.
eventoTemporal
= eventoTemporal;