1 2 3 4 5 6 7 8
'use strict'; var regex = require('unc-path-regex'); module.exports = function isUNC(fp) { if (typeof fp !== 'string') return false; return regex().test(fp); };