All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.is-unc-path.index.js Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
'use strict';

var regex = require('unc-path-regex')();

module.exports = function(filepath) {
  if (typeof filepath !== 'string') {
    throw new TypeError('expected a string');
  }
  return regex.test(filepath);
};




© 2015 - 2025 Weber Informatics LLC | Privacy Policy