From 7a52ddeba2a68388b544f529d2d92104420f77b0 Mon Sep 17 00:00:00 2001 From: Shipwreckt Date: Fri, 31 Oct 2025 20:02:14 +0000 Subject: Changed from static to 11ty! --- node_modules/maximatch/index.js | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 node_modules/maximatch/index.js (limited to 'node_modules/maximatch/index.js') diff --git a/node_modules/maximatch/index.js b/node_modules/maximatch/index.js new file mode 100644 index 0000000..c8fa8d6 --- /dev/null +++ b/node_modules/maximatch/index.js @@ -0,0 +1,39 @@ +'use strict'; +var minimatch = require('minimatch'); +var arrayUnion = require('array-union'); +var arrayDiffer = require('array-differ'); +var arrify = require('arrify'); + +module.exports = function (list, patterns, options) { + list = arrify(list); + patterns = arrify(patterns); + + if (list.length === 0 || patterns.length === 0) { + return []; + } + + options = options || {}; + + return patterns.reduce(function (ret, pattern) { + if (typeof pattern === 'function') { + + return arrayUnion(ret, list.filter(pattern)); + + } else if (pattern instanceof RegExp) { + + return arrayUnion(ret, list.filter(function(item) { + return pattern.test(item); + })); + + } else { + var process = arrayUnion; + + if (pattern[0] === '!') { + pattern = pattern.slice(1); + process = arrayDiffer; + } + + return process(ret, minimatch.match(list, pattern, options)); + } + }, []); +}; -- cgit v1.2.3