adding dist

This commit is contained in:
Federico Builes
2023-10-16 03:44:04 +02:00
parent bd3b04e194
commit af51c4b700
2 changed files with 10 additions and 3 deletions
Generated Vendored
+9 -2
View File
@@ -38738,8 +38738,15 @@ class Directives {
if (!suffix)
onError(`The ${source} tag has no suffix`);
const prefix = this.tags[handle];
if (prefix)
return prefix + decodeURIComponent(suffix);
if (prefix) {
try {
return prefix + decodeURIComponent(suffix);
}
catch (error) {
onError(String(error));
return null;
}
}
if (handle === '!')
return source; // local tag
onError(`Could not resolve tag: ${source}`);
Generated Vendored
+1 -1
View File
File diff suppressed because one or more lines are too long