UNPKG

193 BJavaScriptView Raw
1import minimatch from 'minimatch';
2import _ from 'underscore';
3
4export default ({ file: { builds, links }, path }) =>
5 _.contains(builds, path) || _.any(links, link => minimatch(path, link));