1
0
Fork 0
mirror of synced 2024-07-29 18:15:49 +12:00
budibase/packages/common/node_modules/test-exclude/is-outside-dir-win32.js
2020-04-15 15:23:29 +01:00

11 lines
239 B
JavaScript

'use strict';
const path = require('path');
const minimatch = require('minimatch');
const dot = { dot: true };
module.exports = function(dir, filename) {
return !minimatch(path.resolve(dir, filename), path.join(dir, '**'), dot);
};