mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-18 08:03:30 +02:00
Don't read new frames before the previous frame has been sent.
This commit is contained in:
@@ -31,9 +31,9 @@ BroadcastSet.prototype.remove = function(id) {
|
||||
}
|
||||
}
|
||||
|
||||
BroadcastSet.prototype.each = function(fn) {
|
||||
return Object.keys(this.set).forEach(function(id) {
|
||||
return fn(this.set[id])
|
||||
BroadcastSet.prototype.values = function() {
|
||||
return Object.keys(this.set).map(function(id) {
|
||||
return this.set[id]
|
||||
}, this)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user