PHP 8.2.30
Preview: revs.js Size: 638 B
/proc/self/root/opt/alt/alt-nodejs19/root/lib/node_modules/npm/node_modules/@npmcli/git/lib/revs.js

const pinflight = require('promise-inflight')
const spawn = require('./spawn.js')
const LRU = require('lru-cache')

const revsCache = new LRU({
  max: 100,
  ttl: 5 * 60 * 1000,
})

const linesToRevs = require('./lines-to-revs.js')

module.exports = async (repo, opts = {}) => {
  if (!opts.noGitRevCache) {
    const cached = revsCache.get(repo)
    if (cached) {
      return cached
    }
  }

  return pinflight(`ls-remote:${repo}`, () =>
    spawn(['ls-remote', repo], opts)
      .then(({ stdout }) => linesToRevs(stdout.trim().split('\n')))
      .then(revs => {
        revsCache.set(repo, revs)
        return revs
      })
  )
}

Directory Contents

Dirs: 0 × Files: 13

Name Size Perms Modified Actions
4.82 KB lrw-r--r-- 2023-12-06 18:07:50
Edit Download
600 B lrw-r--r-- 2023-12-06 18:07:50
Edit Download
300 B lrw-r--r-- 2023-12-06 18:07:50
Edit Download
242 B lrw-r--r-- 2023-12-06 18:07:50
Edit Download
222 B lrw-r--r-- 2023-12-06 18:07:50
Edit Download
271 B lrw-r--r-- 2023-12-06 18:07:50
Edit Download
3.97 KB lrw-r--r-- 2023-12-06 18:07:50
Edit Download
861 B lrw-r--r-- 2023-12-06 18:07:50
Edit Download
371 B lrw-r--r-- 2023-12-06 18:07:50
Edit Download
638 B lrw-r--r-- 2023-12-06 18:07:50
Edit Download
1.27 KB lrw-r--r-- 2023-12-06 18:07:50
Edit Download
109 B lrw-r--r-- 2023-12-06 18:07:50
Edit Download
339 B lrw-r--r-- 2023-12-06 18:07:50
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).