Files
PrestaShop/admin-dev/themes/default/components/modernizr/feature-detects/websockets-binary.js
T
2013-07-18 18:51:24 +02:00

8 lines
246 B
JavaScript

// binaryType is truthy if there is support.. returns "blob" in new-ish chrome.
// plus.google.com/115535723976198353696/posts/ERN6zYozENV
Modernizr.addTest('websocketsbinary',
!!(window.WebSocket && (new WebSocket('ws://.')).binaryType)
);