login/node_modules/test-exclude/is-outside-dir-posix.js
Balaga Gayatri 8ab7113acc changes
2021-10-25 18:21:32 +05:30

7 lines
147 B
JavaScript

'use strict';
const path = require('path');
module.exports = function(dir, filename) {
return /^\.\./.test(path.relative(dir, filename));
};