Socket
Socket
Sign inDemoInstall

multiformats

Package Overview
Dependencies
Maintainers
1
Versions
153
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

multiformats - npm Package Compare versions

Comparing version 9.5.0 to 9.5.1

2

package.json
{
"name": "multiformats",
"version": "9.5.0",
"version": "9.5.1",
"description": "Interface for multihash, multicodec, multibase and CID",

@@ -5,0 +5,0 @@ "main": "./cjs/src/index.js",

@@ -17,3 +17,3 @@ import { base58btc } from 'multiformats/bases/base58'

* @param {(cid: CID) => Promise<Block<T>|null>} options.load
* @param {Set<string>?} options.seen
* @param {Set<string>} [options.seen]
*/

@@ -20,0 +20,0 @@ const walk = async ({ cid, load, seen }) => {

@@ -15,3 +15,3 @@ export type CID = import('./cid.js').CID;

* @param {(cid: CID) => Promise<Block<T>|null>} options.load
* @param {Set<string>?} options.seen
* @param {Set<string>} [options.seen]
*/

@@ -21,4 +21,4 @@ export function walk<T>({ cid, load, seen }: {

load: (cid: CID) => Promise<import("./block.js").Block<T> | null>;
seen: Set<string> | null;
seen?: Set<string> | undefined;
}): Promise<void>;
//# sourceMappingURL=traversal.d.ts.map

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc