1234567891011121314151617 |
- "use strict";
- var memo;
- function isOldIE() {
- if (typeof memo === "undefined") {
-
-
-
-
-
- memo = Boolean(typeof window !== "undefined" && typeof document !== "undefined" && document.all && !window.atob);
- }
- return memo;
- }
- module.exports = isOldIE;
|