forked from enviPath/enviPy
Current Dev State
This commit is contained in:
8
static/js/ketcher2/node_modules/is-unc-path/index.js
generated
vendored
Normal file
8
static/js/ketcher2/node_modules/is-unc-path/index.js
generated
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
'use strict';
|
||||
|
||||
var regex = require('unc-path-regex');
|
||||
|
||||
module.exports = function isUNC(fp) {
|
||||
if (typeof fp !== 'string') return false;
|
||||
return regex().test(fp);
|
||||
};
|
||||
Reference in New Issue
Block a user