source: frontend/node_modules/test-exclude/is-outside-dir-win32.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 239 bytes
RevLine 
[9af201e]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};
Note: See TracBrowser for help on using the repository browser.