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
|
|
|
};
|