UNPKG

jsdoc-75lb

Version:

An API documentation generator for JavaScript.

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); };