mirror of
https://github.com/overleaf/overleaf.git
synced 2025-03-03 12:41:42 +00:00
Decaf cleanup: remove Array.from()
This commit is contained in:
parent
5aeaa4b0c2
commit
53d79d86a9
1 changed files with 1 additions and 2 deletions
|
@ -1,6 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* decaffeinate suggestions:
|
* decaffeinate suggestions:
|
||||||
* DS101: Remove unnecessary use of Array.from
|
|
||||||
* DS102: Remove unnecessary code created because of implicit returns
|
* DS102: Remove unnecessary code created because of implicit returns
|
||||||
* DS103: Rewrite code to no longer use __guard__
|
* DS103: Rewrite code to no longer use __guard__
|
||||||
* DS207: Consider shorter variations of null checks
|
* DS207: Consider shorter variations of null checks
|
||||||
|
@ -211,7 +210,7 @@ const watchForEvent = (eventName) =>
|
||||||
)
|
)
|
||||||
|
|
||||||
const events = ['connect', 'ready', 'error', 'close', 'reconnecting', 'end']
|
const events = ['connect', 'ready', 'error', 'close', 'reconnecting', 'end']
|
||||||
for (const eventName of Array.from(events)) {
|
for (const eventName of events) {
|
||||||
watchForEvent(eventName)
|
watchForEvent(eventName)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue