websockets-binary.js 246 B

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