UNPKG

147 BJavaScriptView Raw
1'use strict';
2
3const path = require('path');
4
5module.exports = function(dir, filename) {
6 return /^\.\./.test(path.relative(dir, filename));
7};