wallet-core/node_modules/is-relative/index.js

13 lines
343 B
JavaScript
Raw Normal View History

2016-10-10 03:43:44 +02:00
'use strict';
var isUncPath = require('is-unc-path');
2018-09-20 02:56:13 +02:00
module.exports = function isRelative(filepath) {
if (typeof filepath !== 'string') {
throw new TypeError('expected filepath to be a string');
2016-10-10 03:43:44 +02:00
}
2018-09-20 02:56:13 +02:00
2016-10-10 03:43:44 +02:00
// Windows UNC paths are always considered to be absolute.
2018-09-20 02:56:13 +02:00
return !isUncPath(filepath) && !/^([a-z]:)?[\\\/]/i.test(filepath);
2016-10-10 03:43:44 +02:00
};