UNPKG

faye

Version:

Simple pub/sub messaging for the web

11 lines (8 loc) 209 B
'use strict'; var WS = global.MozWebSocket || global.WebSocket; module.exports = { create: function(url, protocols, options) { if (typeof WS !== 'function') return null; return new WS(url); } };