UNPKG

hjplayer

Version:

hjplayer, a HTML5 Player, can play flv and hls by Media Source Extension, based on typescript;

12 lines (11 loc) 255 B
/** * 获取全局, 在web worker环境中时, 不存在window对象 */ /* eslint-disable */ export default function getGlobalObject(): Window { if(typeof window === 'undefined') { return self; } return window; } /* eslint-enable */