8 lines
147 B
JavaScript
Raw Normal View History

2025-02-22 11:20:12 -06:00
'use strict';
const path = require('path');
module.exports = function(dir, filename) {
return /^\.\./.test(path.relative(dir, filename));
};