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

attachmediastream

Package Overview
Dependencies
Maintainers
4
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

attachmediastream - npm Package Compare versions

Comparing version 2.0.4 to 2.1.0

6

attachmediastream.js

@@ -33,7 +33,7 @@ var adapter = require('webrtc-adapter');

if (opts.autoplay) element.autoplay = 'autoplay';
if (opts.muted) element.muted = true;
if (!opts.audio && opts.mirror) {
element.muted = !!opts.muted;
if (!opts.audio) {
['', 'moz', 'webkit', 'o', 'ms'].forEach(function (prefix) {
var styleName = prefix ? prefix + 'Transform' : 'transform';
element.style[styleName] = 'scaleX(-1)';
element.style[styleName] = opts.mirror ? 'scaleX(-1)' : 'scaleX(1)';
});

@@ -40,0 +40,0 @@ }

{
"name": "attachmediastream",
"version": "2.0.4",
"version": "2.1.0",
"description": "cross-browser way to attach a media stream to a video element.",

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

Sorry, the diff of this file is too big to display

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