blob: 5df3bca0e56d12a68f6d2050074b3334da7f3018 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
"use strict";
exports.resolveSourceURL = resolveSourceURL;
function resolveSourceURL(sourceURL, global) {
if (sourceURL) {
try {
return new URL(sourceURL, global?.location?.href || undefined).href;
} catch (err) {}
}
return null;
}
exports.getSourcemapBaseURL = getSourcemapBaseURL;
function getSourcemapBaseURL(url, global) {
let sourceMapBaseURL = null;
if (url) {
// Sources that have explicit URLs can be used directly as the base.
sourceMapBaseURL = url;
} else if (global?.location?.href) {
// If there is no URL for the source, the map comment is relative to the
// page being viewed, so we use the document href.
sourceMapBaseURL = global?.location?.href;
} else {
// If there is no valid base, the sourcemap URL will need to be an absolute
// URL of some kind.
return null;
}
// A data URL is large and will never be a valid base, so we can just treat
// it as if there is no base at all to avoid a sending it to the client
// for no reason.
if (sourceMapBaseURL.startsWith("data:")) {
return null;
}
// If the base URL is a blob, we want to resolve relative to the origin
// that created the blob URL, if there is one.
if (sourceMapBaseURL.startsWith("blob:")) {
try {
const parsedBaseURL = new URL(sourceMapBaseURL);
return parsedBaseURL.origin === "null" ? null : parsedBaseURL.origin;
} catch (err) {
return null;
}
}
return sourceMapBaseURL;
}
|