Socket
Socket
Sign inDemoInstall

mute-stream

Package Overview
Dependencies
0
Maintainers
6
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.8 to 1.0.0

lib/index.js

45

package.json
{
"name": "mute-stream",
"version": "0.0.8",
"main": "mute.js",
"directories": {
"test": "test"
},
"version": "1.0.0",
"main": "lib/index.js",
"devDependencies": {
"tap": "^12.1.1"
"@npmcli/eslint-config": "^4.0.0",
"@npmcli/template-oss": "4.11.0",
"tap": "^16.3.0"
},
"scripts": {
"test": "tap test/*.js --cov"
"test": "tap",
"lint": "eslint \"**/*.js\"",
"postlint": "template-oss-check",
"template-oss-apply": "template-oss-apply --force",
"lintfix": "npm run lint -- --fix",
"snap": "tap",
"posttest": "npm run lint"
},
"repository": {
"type": "git",
"url": "git://github.com/isaacs/mute-stream"
"url": "https://github.com/npm/mute-stream.git"
},

@@ -23,8 +28,26 @@ "keywords": [

],
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
"author": "GitHub Inc.",
"license": "ISC",
"description": "Bytes go in, but they don't come out (when muted).",
"files": [
"mute.js"
]
"bin/",
"lib/"
],
"tap": {
"statements": 70,
"branches": 60,
"functions": 81,
"lines": 70,
"nyc-arg": [
"--exclude",
"tap-snapshots/**"
]
},
"engines": {
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
},
"templateOSS": {
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
"version": "4.11.0"
}
}

@@ -11,5 +11,5 @@ # mute-stream

```javascript
var MuteStream = require('mute-stream')
const MuteStream = require('mute-stream')
var ms = new MuteStream(options)
const ms = new MuteStream(options)

@@ -24,3 +24,3 @@ ms.pipe(process.stdout)

// can also be used to mute incoming data
var ms = new MuteStream
const ms = new MuteStream
input.pipe(ms)

@@ -27,0 +27,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc