7 lines
147 B
JavaScript
Executable file
7 lines
147 B
JavaScript
Executable file
'use strict';
|
|
|
|
const path = require('path');
|
|
|
|
module.exports = function(dir, filename) {
|
|
return /^\.\./.test(path.relative(dir, filename));
|
|
};
|