Skip to content
This repository was archived by the owner on Jul 13, 2020. It is now read-only.

Commit 296cedd

Browse files
committed
meteor support as in systemjs/systemjs#980
1 parent e86e396 commit 296cedd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

LICENSE-MIT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2013-2015 Guy Bedford, Luke Hoban, Addy Osmani
1+
Copyright (c) 2013-2016 Guy Bedford, Luke Hoban, Addy Osmani
22

33
Permission is hereby granted, free of charge, to any person
44
obtaining a copy of this software and associated documentation

src/wrapper-start.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
var isWorker = typeof window == 'undefined' && typeof self != 'undefined' && typeof importScripts != 'undefined';
44
var isBrowser = typeof window != 'undefined' && typeof document != 'undefined';
5-
var isWindows = typeof process != 'undefined' && !!process.platform.match(/^win/);
5+
var isWindows = typeof process != 'undefined' && typeof process.platform != 'undefined' && !!process.platform.match(/^win/);
66

77
if (!__global.console)
88
__global.console = { assert: function() {} };

0 commit comments

Comments
 (0)