Files

8 lines
147 B
JavaScript
Raw Permalink Normal View History

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