nplayer
Version:
powerful danmaku video player
5 lines (4 loc) • 313 B
text/typescript
export const isBrowser = typeof window !== 'undefined';
export const isIOS = isBrowser && /(iPad|iPhone|iPod)/gi.test(navigator.platform);
export const isIE = isBrowser && /MSIE|Trident/.test(navigator.userAgent);
export const isWin10IE = isBrowser && isIE && navigator.userAgent.indexOf('Windows NT 10.0') > -1;