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 343B

123456789101112
  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. };