Initial commit
[yaffs-website] / node_modules / is-unc-path / index.js
1 'use strict';
2
3 var regex = require('unc-path-regex');
4
5 module.exports = function isUNC(fp) {
6   if (typeof fp !== 'string') return false;
7   return regex().test(fp);
8 };