edit empty function for platform consistency
This commit is contained in:
parent
f5c04c7037
commit
75a117e4e2
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ class CallbacksRegistry {
|
|||
}
|
||||
|
||||
get (id) {
|
||||
return this.callbacks[id] != null ? this.callbacks[id] : () => {}
|
||||
return this.callbacks[id] != null ? this.callbacks[id] : function () {}
|
||||
}
|
||||
|
||||
apply (id, ...args) {
|
||||
|
|
Loading…
Reference in a new issue