ipfs-unixfs
Advanced tools
Comparing version 9.0.1 to 10.0.0
/** | ||
* @param {string | number | undefined} [mode] | ||
* @param {string | number | null | undefined} [mode] | ||
*/ | ||
export function parseMode(mode?: string | number | undefined): number | undefined; | ||
export function parseMode(mode?: string | number | null | undefined): number | undefined; | ||
/** | ||
@@ -26,3 +26,3 @@ * @param {any} input | ||
* @param {MtimeLike | null} [options.mtime] | ||
* @param {number | string} [options.mode] | ||
* @param {number | string | null} [options.mode] | ||
*/ | ||
@@ -36,3 +36,3 @@ constructor(options?: { | ||
mtime?: import("./types").MtimeLike | null | undefined; | ||
mode?: string | number | undefined; | ||
mode?: string | number | null | undefined; | ||
} | undefined); | ||
@@ -39,0 +39,0 @@ type: string; |
{ | ||
"name": "ipfs-unixfs", | ||
"version": "9.0.1", | ||
"version": "10.0.0", | ||
"description": "JavaScript implementation of IPFS' unixfs (a Unix FileSystem representation on top of a MerkleDAG)", | ||
@@ -5,0 +5,0 @@ "license": "Apache-2.0 OR MIT", |
@@ -28,3 +28,3 @@ import errcode from 'err-code' | ||
/** | ||
* @param {string | number | undefined} [mode] | ||
* @param {string | number | null | undefined} [mode] | ||
*/ | ||
@@ -165,3 +165,3 @@ export function parseMode (mode) { | ||
* @param {MtimeLike | null} [options.mtime] | ||
* @param {number | string} [options.mode] | ||
* @param {number | string | null} [options.mode] | ||
*/ | ||
@@ -168,0 +168,0 @@ constructor (options = { |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
89135