DSDSServer2024/build/build.20240805/static/js/Cesium-1.53/Specs/absolutize.js

13 lines
263 B
JavaScript
Raw Normal View History

define(function() {
'use strict';
function absolutize(url) {
var a = document.createElement('a');
a.href = url;
a.href = a.href; // IE only absolutizes href on get, not set
return a.href;
}
return absolutize;
});