UNPKG

yt-stream

Version:

Create easily readable streams from YouTube video url's

10 lines (9 loc) 194 B
function _validate(_url){ if(typeof _url !== 'string') return false; try { return new URL(_url); } catch { return false; } } module.exports = _validate;