ship-gis/node_modules/test-exclude/is-outside-dir-posix.js

8 lines
147 B
JavaScript
Raw Normal View 히스토리

2026-01-22 09:14:01 +09:00
'use strict';
const path = require('path');
module.exports = function(dir, filename) {
return /^\.\./.test(path.relative(dir, filename));
};