Fix ExecutionEnvironment.canUseDOM for IE8.

This commit is contained in:
cpojer
2014-06-05 12:44:24 -07:00
parent 41ed67d222
commit eebcf9f888
+3 -2
View File
@@ -20,10 +20,11 @@
"use strict";
var canUseDOM =
var canUseDOM = !!(
typeof window !== 'undefined' &&
window.document &&
typeof window.document.createElement === 'function';
window.document.createElement
);
/**
* Simple, lightweight module assisting with the detection and context of