UNPKG

239 BJavaScriptView Raw
1'use strict';
2
3const path = require('path');
4const minimatch = require('minimatch');
5
6const dot = { dot: true };
7
8module.exports = function(dir, filename) {
9 return !minimatch(path.resolve(dir, filename), path.join(dir, '**'), dot);
10};