Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

pino

Package Overview
Dependencies
Maintainers
4
Versions
311
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pino - npm Package Compare versions

Comparing version 8.15.5 to 8.15.6

2

lib/meta.js
'use strict'
module.exports = { version: '8.15.5' }
module.exports = { version: '8.15.6' }
{
"name": "pino",
"version": "8.15.5",
"version": "8.15.6",
"description": "super fast, all natural json logger",

@@ -5,0 +5,0 @@ "main": "pino.js",

'use strict'
const { Writable } = require('stream')
const fs = require('fs')
module.exports = (options) => {

@@ -8,3 +9,4 @@ const myTransportStream = new Writable({

write (chunk, enc, cb) {
console.log(chunk.toString())
// Bypass console.log() to avoid flakyness
fs.writeSync(1, chunk.toString())
cb()

@@ -11,0 +13,0 @@ }

@@ -463,3 +463,2 @@ 'use strict'

}
await immediate()
not(strip(actual).match(/Hello/), null)

@@ -466,0 +465,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