/snap/node/11691/lib/node_modules/npm/node_modules/@npmcli/git/lib
NameSizeModeActions
clone.js49370644editdlrm
errors.js5790644editdlrm
find.js3160644editdlrm
index.js2420644editdlrm
is-clean.js2220644editdlrm
is.js2160644editdlrm
lines-to-revs.js40610644editdlrm
make-error.js8610644editdlrm
opts.js16170644editdlrm
revs.js5210644editdlrm
spawn.js13030644editdlrm
utils.js1090644editdlrm
which.js3390644editdlrm
Edit: /snap/node/11691/lib/node_modules/npm/node_modules/@npmcli/git/lib/revs.js (521B)
const spawn = require('./spawn.js') const { LRUCache } = require('lru-cache') const linesToRevs = require('./lines-to-revs.js') const revsCache = new LRUCache({ max: 100, ttl: 5 * 60 * 1000, }) module.exports = async (repo, opts = {}) => { if (!opts.noGitRevCache) { const cached = revsCache.get(repo) if (cached) { return cached } } const { stdout } = await spawn(['ls-remote', repo], opts) const revs = linesToRevs(stdout.trim().split('\n')) revsCache.set(repo, revs) return revs }