wallet-core/node_modules/is-unc-path/index.js

11 lines
217 B
JavaScript
Raw Normal View History

2016-10-10 03:43:44 +02:00
'use strict';
2018-09-20 02:56:13 +02:00
var regex = require('unc-path-regex')();
2016-10-10 03:43:44 +02:00
2018-09-20 02:56:13 +02:00
module.exports = function(filepath) {
if (typeof filepath !== 'string') {
throw new TypeError('expected a string');
}
return regex.test(filepath);
2016-10-10 03:43:44 +02:00
};