UNPKG

detox

Version:

E2E tests and automation for mobile

13 lines (10 loc) 251 B
const { URL } = require('url'); function isValidWebsocketURL(url) { try { const { protocol } = new URL(url); return protocol === 'ws:' || protocol === 'wss:'; } catch (err) { return false; } } module.exports = isValidWebsocketURL;