You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.js 217B

12345678910
  1. 'use strict';
  2. var regex = require('unc-path-regex')();
  3. module.exports = function(filepath) {
  4. if (typeof filepath !== 'string') {
  5. throw new TypeError('expected a string');
  6. }
  7. return regex.test(filepath);
  8. };