Use != null to handle undefined

This commit is contained in:
Kevin Sawicki 2016-12-12 16:25:56 -08:00
Родитель c108088110
Коммит 2bd8ef83d1
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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]
}