mirror of
https://github.com/Raghu-Ch/nodeRestAPI.git
synced 2026-02-11 05:03:02 -05:00
initial commit
This commit is contained in:
8
node_modules/is-unc-path/index.js
generated
vendored
Normal file
8
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