renovate
Version:
Automated dependency updates. Flexible so you don't need to be.
10 lines • 447 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getCachedPristineResult = getCachedPristineResult;
const repository_1 = require("../cache/repository");
function getCachedPristineResult(branchName) {
const cache = (0, repository_1.getCache)();
const branch = cache.branches?.find((branch) => branch.branchName === branchName);
return branch?.pristine ?? false;
}
//# sourceMappingURL=pristine.js.map