Skip to content

Commit ad57c9d

Browse files
alan-agius4crisbeto
authored andcommitted
build: re-sync file
This fixes main CI
1 parent eae8f7e commit ad57c9d

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

  • .github/actions/deploy-docs-site

.github/actions/deploy-docs-site/main.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29213,21 +29213,21 @@ var JSONStringify2 = (value, replacer, space) => {
2921329213
const denoisedJSON = processedJSON.replace(noiseStringify2, "$1$2$3");
2921429214
return denoisedJSON;
2921529215
};
29216-
var featureCache = /* @__PURE__ */ new Map();
29216+
var featureCache2 = /* @__PURE__ */ new Map();
2921729217
var isContextSourceSupported2 = () => {
2921829218
const parseFingerprint = JSON.parse.toString();
29219-
if (featureCache.has(parseFingerprint)) {
29220-
return featureCache.get(parseFingerprint);
29219+
if (featureCache2.has(parseFingerprint)) {
29220+
return featureCache2.get(parseFingerprint);
2922129221
}
2922229222
try {
2922329223
const result = JSON.parse(
2922429224
"1",
2922529225
(_, __, context3) => !!context3?.source && context3.source === "1"
2922629226
);
29227-
featureCache.set(parseFingerprint, result);
29227+
featureCache2.set(parseFingerprint, result);
2922829228
return result;
2922929229
} catch {
29230-
featureCache.set(parseFingerprint, false);
29230+
featureCache2.set(parseFingerprint, false);
2923129231
return false;
2923229232
}
2923329233
};

0 commit comments

Comments
 (0)