@aplus-frontend/antdv
Version:
Vue basic component library maintained based on ant-design-vue
11 lines (10 loc) • 583 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.defaultWindow = exports.defaultNavigator = exports.defaultLocation = exports.defaultDocument = void 0;
var _is = require("./is");
const defaultWindow = exports.defaultWindow = _is.isClient ? window : undefined;
const defaultDocument = exports.defaultDocument = _is.isClient ? window.document : undefined;
const defaultNavigator = exports.defaultNavigator = _is.isClient ? window.navigator : undefined;
const defaultLocation = exports.defaultLocation = _is.isClient ? window.location : undefined;
;