mirror of
https://github.com/protomaps/PMTiles.git
synced 2026-02-04 19:01:08 +00:00
11 lines
351 B
JavaScript
11 lines
351 B
JavaScript
(function (root, factory) {
|
|
if (typeof define === 'function' && define.amd) {
|
|
define([], factory);
|
|
} else if (typeof module === 'object' && module.exports) {
|
|
module.exports = factory();
|
|
} else {
|
|
root.pmtiles = factory();
|
|
}
|
|
}(typeof self !== 'undefined' ? self : this, function () {
|
|
return {pmtiles:true};
|
|
})); |