UNPKG

hd-utils

Version:

A handy utils for modern JS developers

9 lines (8 loc) 254 B
/** * @description will check if the passed url is instance of URL. * @example isURLObj("www.google.com") // false * @example isURLObj(new URL("https://google.com")) // true */ export default function isURLObj(url) { return url instanceof URL; }