mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-05 08:11:40 +02:00
12 lines
370 B
JavaScript
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;
|
|
}
|