blob: 37563577f230ad841147507ab2a9898b669e9ccb [file] [log] [blame]
Leo Repp58b9f112021-11-22 11:57:47 +01001'use strict';
2
3var isUncPath = require('is-unc-path');
4
5module.exports = function isRelative(filepath) {
6 if (typeof filepath !== 'string') {
7 throw new TypeError('expected filepath to be a string');
8 }
9
10 // Windows UNC paths are always considered to be absolute.
11 return !isUncPath(filepath) && !/^([a-z]:)?[\\\/]/i.test(filepath);
12};