Files
Mario Romano 07807e7bc3 # add dist
2016-04-21 11:56:31 +01:00

9 lines
167 B
JavaScript

'use strict';
var regex = require('unc-path-regex');
module.exports = function isUNC(fp) {
if (typeof fp !== 'string') return false;
return regex().test(fp);
};