aoc/node_modules/test-exclude/is-outside-dir-posix.js

8 lines
147 B
JavaScript
Raw Normal View History

2022-12-03 22:11:42 +00:00
'use strict';
const path = require('path');
module.exports = function(dir, filename) {
return /^\.\./.test(path.relative(dir, filename));
};