Use != null to handle undefined
This commit is contained in:
Родитель
c108088110
Коммит
2bd8ef83d1
|
@ -19,7 +19,7 @@ const messageBoxOptions = {
|
|||
}
|
||||
|
||||
const parseArgs = function (window, options, callback, ...args) {
|
||||
if (window !== null && window.constructor !== BrowserWindow) {
|
||||
if (window != null && window.constructor !== BrowserWindow) {
|
||||
// Shift.
|
||||
[callback, options, window] = [options, window, null]
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче