Socket
Socket
Sign inDemoInstall

xgplayer-streaming-shared

Package Overview
Dependencies
Maintainers
4
Versions
203
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

xgplayer-streaming-shared - npm Package Compare versions

Comparing version 3.0.0-next.9-1 to 3.0.0-next.9-2

6

es/mse.d.ts

@@ -108,3 +108,7 @@ export type MSEErrorType = string;

}
declare const MediaSource: any;
declare const MediaSource: {
new (): MediaSource;
prototype: MediaSource;
isTypeSupported(type: string): boolean;
};
export {};

4

es/mse.js

@@ -31,3 +31,5 @@ import 'core-js/modules/es.reflect.construct.js';

function getMediaSource() {
return isBrowser ? MediaSource : null;
try {
return isBrowser ? window.MediaSource : null;
} catch (e) {}
}

@@ -34,0 +36,0 @@

{
"name": "xgplayer-streaming-shared",
"version": "3.0.0-next.9-1",
"version": "3.0.0-next.9-2",
"main": "dist/index.min.js",

@@ -5,0 +5,0 @@ "module": "es/index.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