is-outside-dir-posix.js 147 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 'use strict'; const path = require('path'); module.exports = function(dir, filename) { return /^\.\./.test(path.relative(dir, filename)); };