Removed unused parameters in scripts

This commit is contained in:
2019-04-22 18:06:50 +09:00
parent 6e4097b3b6
commit b78785cadc
19 changed files with 31 additions and 30 deletions

@ -111,7 +111,7 @@ export default class AudioPlayer {
this.audioNode.playbackRate.setValueAtTime(this.targetSpeed, 0)
this.audioNode.start(0)
this.audioNode.onended = (event: MediaStreamErrorEvent) => {
this.audioNode.onended = (_: MediaStreamErrorEvent) => {
if(currentPlayId !== this.playId) {
return
}