mirror of
https://github.com/fluencelabs/js-peer-id
synced 2025-07-04 17:21:54 +00:00
Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
1d86506c64 | |||
9dc7ce5f5e | |||
f775e3509b | |||
00819ba4eb |
@ -1,3 +1,8 @@
|
|||||||
|
<a name="0.13.9"></a>
|
||||||
|
## [0.13.9](https://github.com/libp2p/js-peer-id/compare/v0.13.8...v0.13.9) (2020-02-19)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a name="0.13.8"></a>
|
<a name="0.13.8"></a>
|
||||||
## [0.13.8](https://github.com/libp2p/js-peer-id/compare/v0.13.6...v0.13.8) (2020-02-18)
|
## [0.13.8](https://github.com/libp2p/js-peer-id/compare/v0.13.6...v0.13.8) (2020-02-18)
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "peer-id",
|
"name": "peer-id",
|
||||||
"version": "0.13.8",
|
"version": "0.13.9",
|
||||||
"description": "IPFS Peer Id implementation in Node.js",
|
"description": "IPFS Peer Id implementation in Node.js",
|
||||||
"leadMaintainer": "Vasco Santos <santos.vasco10@gmail.com>",
|
"leadMaintainer": "Vasco Santos <santos.vasco10@gmail.com>",
|
||||||
"main": "src/index.js",
|
"main": "src/index.js",
|
||||||
@ -74,6 +74,7 @@
|
|||||||
"Prashanth Chandra <coolshanth94@gmail.com>",
|
"Prashanth Chandra <coolshanth94@gmail.com>",
|
||||||
"Richard Littauer <richard.littauer@gmail.com>",
|
"Richard Littauer <richard.littauer@gmail.com>",
|
||||||
"Richard Schneider <makaretu@gmail.com>",
|
"Richard Schneider <makaretu@gmail.com>",
|
||||||
|
"Robert Kiel <robert.kiel@validitylabs.org>",
|
||||||
"Stephen Whitmore <stephen.whitmore@gmail.com>",
|
"Stephen Whitmore <stephen.whitmore@gmail.com>",
|
||||||
"Topper Bowers <topper@quorumcontrol.com>",
|
"Topper Bowers <topper@quorumcontrol.com>",
|
||||||
"Vasco Santos <vasco.santos@moxy.studio>",
|
"Vasco Santos <vasco.santos@moxy.studio>",
|
||||||
|
4
src/index.d.ts
vendored
4
src/index.d.ts
vendored
@ -38,7 +38,7 @@ declare namespace PeerId {
|
|||||||
* Checks if a value is an instance of PeerId.
|
* Checks if a value is an instance of PeerId.
|
||||||
* @param id The value to check.
|
* @param id The value to check.
|
||||||
*/
|
*/
|
||||||
function isPeerId(id: any): boolean
|
function isPeerId(id: any): id is PeerId
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a new PeerId.
|
* Create a new PeerId.
|
||||||
@ -105,7 +105,7 @@ declare class PeerId {
|
|||||||
/**
|
/**
|
||||||
* Raw id.
|
* Raw id.
|
||||||
*/
|
*/
|
||||||
id: Buffer;
|
readonly id: Buffer;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Private key.
|
* Private key.
|
||||||
|
Reference in New Issue
Block a user