layui-js/node_modules/is-unc-path/index.js
2017-08-21 08:50:25 +08: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);
};