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

detect-audio-video

Package Overview
Dependencies
Maintainers
1
Versions
79
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

detect-audio-video - npm Package Compare versions

Comparing version 0.5.0 to 0.6.0

5

dist/index.js

@@ -211,3 +211,6 @@ const H264_BASELINE_CONTENT_TYPE = 'video/mp4; codecs="avc1.42E01E"';

try {
result = window.matchMedia('(dynamic-range: high)').matches;
result = window.matchMedia('(dynamic-range: high)').matches ||
// https://developer.mozilla.org/en-US/docs/Web/CSS/@media/video-dynamic-range
// For Firefox users on macOS 11+ (with HDR-compatible screens)
window.matchMedia('(video-dynamic-range: high)').matches;
}

@@ -214,0 +217,0 @@ catch (e) { }

2

package.json
{
"name": "detect-audio-video",
"version": "0.5.0",
"version": "0.6.0",
"description": "Detect audio video features",

@@ -5,0 +5,0 @@ "module": "dist/index.js",

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