is-outside-dir-posix.js 147 Bytes
Newer Older
1 2 3 4 5 6 7
'use strict';

const path = require('path');

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