| Leo Repp | 58b9f11 | 2021-11-22 11:57:47 +0100 | [diff] [blame^] | 1 | 'use strict'; |
| 2 | |||||
| 3 | var regex = require('unc-path-regex')(); | ||||
| 4 | |||||
| 5 | module.exports = function(filepath) { | ||||
| 6 | if (typeof filepath !== 'string') { | ||||
| 7 | throw new TypeError('expected a string'); | ||||
| 8 | } | ||||
| 9 | return regex.test(filepath); | ||||
| 10 | }; | ||||