Files
portfolio2023/build/node_modules/dag-map/lib/dag-map.umd.js
T
2023-11-24 22:35:41 +01:00

12 lines
370 B
JavaScript

import platform from './dag-map/platform';
import DAG from './dag-map';
/* global define:true module:true window: true */
if (typeof define === 'function' && define.amd) {
define(function() { return DAG; });
} else if (typeof module !== 'undefined' && module.exports) {
module.exports = DAG;
} else if (typeof platform !== 'undefined') {
platform['DAG'] = DAG;
}