版博士V2.0程序
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 

13 líneas
343 B

  1. 'use strict';
  2. var isUncPath = require('is-unc-path');
  3. module.exports = function isRelative(filepath) {
  4. if (typeof filepath !== 'string') {
  5. throw new TypeError('expected filepath to be a string');
  6. }
  7. // Windows UNC paths are always considered to be absolute.
  8. return !isUncPath(filepath) && !/^([a-z]:)?[\\\/]/i.test(filepath);
  9. };