FLUJOS/VISUALIZACION/node_modules/cssnano/dist/lib/getMatch.js
2025-11-07 00:06:12 +01:00

14 lines
No EOL
385 B
JavaScript
Executable file

"use strict";
exports.__esModule = true;
exports.default = getMatchFactory;
function getMatchFactory(mappings) {
return function getMatch(args) {
return args.reduce(function (list, arg, i) {
return list.filter(function (keyword) {
return keyword[1][i] === arg;
});
}, mappings);
};
}
module.exports = exports["default"];