Socket
Socket
Sign inDemoInstall

ipfs-utils

Package Overview
Dependencies
Maintainers
1
Versions
69
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ipfs-utils - npm Package Compare versions

Comparing version 2.3.0 to 2.3.1

10

CHANGELOG.md

@@ -0,1 +1,11 @@

<a name="2.3.1"></a>
## [2.3.1](https://github.com/ipfs/js-ipfs-utils/compare/v2.3.0...v2.3.1) (2020-06-18)
### Features
* add webrtc to supports ([#38](https://github.com/ipfs/js-ipfs-utils/issues/38)) ([8cca85d](https://github.com/ipfs/js-ipfs-utils/commit/8cca85d))
<a name="2.3.0"></a>

@@ -2,0 +12,0 @@ # [2.3.0](https://github.com/ipfs/js-ipfs-utils/compare/v2.2.2...v2.3.0) (2020-06-10)

10

package.json
{
"name": "ipfs-utils",
"version": "2.3.0",
"version": "2.3.1",
"description": "Package to aggregate shared logic and dependencies for the IPFS ecosystem",

@@ -38,3 +38,3 @@ "main": "src/index.js",

"any-signal": "^1.1.0",
"buffer": "^5.4.2",
"buffer": "^5.6.0",
"err-code": "^2.0.0",

@@ -53,5 +53,5 @@ "fs-extra": "^9.0.1",

"delay": "^4.3.0",
"it-all": "^1.0.1",
"it-drain": "^1.0.0",
"it-last": "^1.0.1",
"it-all": "^1.0.2",
"it-drain": "^1.0.1",
"it-last": "^1.0.2",
"it-to-stream": "^0.1.1"

@@ -58,0 +58,0 @@ },

'use strict'
const globalThis = require('./globalthis')
module.exports = {
supportsFileReader: typeof self !== 'undefined' && 'FileReader' in self
supportsFileReader: typeof self !== 'undefined' && 'FileReader' in self,
supportsWebRTC: 'RTCPeerConnection' in globalThis &&
(typeof navigator !== 'undefined' && typeof navigator.mediaDevices !== 'undefined' && 'getUserMedia' in navigator.mediaDevices)
}
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