New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

pcm-volume

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pcm-volume - npm Package Compare versions

Comparing version 0.0.1 to 1.0.0

11

index.js
var Transform = require('stream').Transform;
var util = require('util');
var inherits = require('inherits');
var Volume = function() {
this.setVolume(1.0);
function Volume (volume) {
if (!(this instanceof Volume)) return new Volume(volume);
if (volume === undefined) volume = 1;
this.setVolume(volume);
Transform.call(this);
};
util.inherits(Volume, Transform);
inherits(Volume, Transform);

@@ -10,0 +13,0 @@ Volume.prototype.setVolume = function(volume) {

@@ -8,3 +8,3 @@ {

],
"version": "0.0.1",
"version": "1.0.0",
"author": {

@@ -23,3 +23,6 @@ "name": "René Raab",

},
"dependencies": {
"inherits": "^2.0.1"
},
"homepage": "https://github.com/reneraab/pcm-volume"
}

@@ -6,2 +6,7 @@ pcm-volume

Install
-------
Install with `npm install pcm-volume` or clone from GitHub and `npm install`.
How to use

@@ -8,0 +13,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