mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
9 lines
167 B
JavaScript
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);
|
|
};
|