История изменений
Исправление mystery, (текущая версия) :
Друг мой, покажи яп/платформу, где можно так:
const emitter = new EventEmitter;
emitter.on('dmxrandFuckYou', ev => console.log('Fuck you, dmxrand!');
const times = 10;
while (times-- > 0) {
emitter.emit('dmxrandFuckYou');
}
Или так:
const middleware = store => next => action {
return result(action);
}
Исправление mystery, :
Друг мой, покажи яп/платформу, где можно так:
const emitter = new EventEmitter;
emitter.on('dmxrandFuckYou', ev => console.log('Fuck you, dmxrand!');
const times = 10;
while (times-- > 0) {
emitter.emit('dmxrandFuckYou');
}
Исходная версия mystery, :
Друг мой, покажи яп/платформу, где можно так:
const emitter = new EventEmitter;
emitter.on('dmxrandFuckYou', console.log('Fuck you, dmxrand!');
const times = 10;
while (times-- > 0) {
emitter.emit('dmxrandFuckYou');
}