gabrielbull / react-desktop

React UI Components for macOS High Sierra and Windows 10
http://reactdesktop.js.org
MIT License
9.52k stars 462 forks source link

add tests for module exporting #38

Closed chentsulin closed 9 years ago

chentsulin commented 9 years ago
if (window) {

will throw ReferenceError: window is not defined, so I change it to

if (typeof window !== 'undefined') {