mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-01-24 23:36:48 -06:00
17 lines
401 B
JavaScript
17 lines
401 B
JavaScript
|
(function (factory) {
|
||
|
if (typeof define === 'function' && define.amd) {
|
||
|
// AMD. Register as an anonymous module.
|
||
|
define([], factory);
|
||
|
} else if(typeof module !== 'undefined' && module.exports) {
|
||
|
// CommonJS
|
||
|
module.exports = factory();
|
||
|
} else {
|
||
|
// Browser globals
|
||
|
factory();
|
||
|
}
|
||
|
}(function(){
|
||
|
var pgAdmin = window.pgAdmin = window.pgAdmin || {};
|
||
|
|
||
|
return pgAdmin;
|
||
|
}));
|