Socket
Socket
Sign inDemoInstall

multiblob

Package Overview
Dependencies
Maintainers
21
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

multiblob - npm Package Compare versions

Comparing version 1.13.5 to 1.13.6

2

package.json
{
"name": "multiblob",
"description": "",
"version": "1.13.5",
"version": "1.13.6",
"homepage": "https://github.com/dominictarr/multiblob",

@@ -6,0 +6,0 @@ "repository": {

@@ -62,7 +62,12 @@ var Blake2s = require('blake2s')

exports.readFile = function (...args) {
exports.readFile = function readFile (...args) {
const ignoredErrorCodes = [
'ENOENT',
'EBADF'
]
return pull(
Read(...args),
Catch(err => {
if (err.code !== 'ENOENT') {
if (ignoredErrorCodes.includes(err.code) === false) {
console.error(new Error(err))

@@ -69,0 +74,0 @@ }

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