Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
import { base58btc } from './bases/base58.js'

/**
 * @typedef {import('./cid.js').CID} CID
 */

/**
 * @template T
 * @typedef {import('./block.js').Block<T>} Block
 */

/**
 * @template T
 * @param {Object} options
 * @param {CID} options.cid
 * @param {(cid: CID) => Promise<Block<T>|null>} options.load
 * @param {Set<string>} [options.seen]
 */
const walk = async ({ cid, load, seen }) => {
  seen = seen || new Set()
  const b58Cid = cid.toString(base58btc)
  if (seen.has(b58Cid)) {
    return
  }

  const block = await load(cid)
  seen.add(b58Cid)

  if (block === null) { // the loader signals with `null` that we should skip this block
    return
  }

  for (const [, cid] of block.links()) {
    await walk({ cid, load, seen })
  }
}

export { walk }