UNPKG

mam-project-templates

Version:
9 lines (6 loc) 167 B
'use strict'; var regex = require('unc-path-regex'); module.exports = function isUNC(fp) { if (typeof fp !== 'string') return false; return regex().test(fp); };