dext5upload-vue3
Version:
Vue3 + TypeScript component for DEXT5 Upload
18 lines (17 loc) • 665 B
JavaScript
/**
* @license Copyright (c) 2003-2022, RAONWIZ DevTeam. All rights reserved.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.getDext5Upload = exports.getDEXT5UPLOAD = void 0;
var getGlobal = function () { return (typeof window !== 'undefined' ? window : global); };
var getDEXT5UPLOAD = function () {
var global = getGlobal();
return global && global.DEXT5UPLOAD ? global.DEXT5UPLOAD : null;
};
exports.getDEXT5UPLOAD = getDEXT5UPLOAD;
var getDext5Upload = function () {
var global = getGlobal();
return global && global.Dext5Upload ? global.Dext5Upload : null;
};
exports.getDext5Upload = getDext5Upload;
;