blob: a9b839edfc0b16f016187c9f7c2ab6d4167b731b [file] [log] [blame]
Leo Repp58b9f112021-11-22 11:57:47 +01001'use strict';
2
3var regex = require('unc-path-regex')();
4
5module.exports = function(filepath) {
6 if (typeof filepath !== 'string') {
7 throw new TypeError('expected a string');
8 }
9 return regex.test(filepath);
10};