Spaces:
Sleeping
Sleeping
File size: 292 Bytes
7aec436 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
const SCAFFOLDING_BUILD_ID = process.env.SCAFFOLDING_BUILD_ID;
const verifyBuildId = (buildId, source) => {
if (source.endsWith('=^..^=')) {
return source.endsWith(`${buildId} =^..^=`);
}
return true;
};
export {
SCAFFOLDING_BUILD_ID as buildId,
verifyBuildId
};
|