my-idlers/node_modules/cssnano-utils/dist/getMatch.js
cp6 fd22b0bf58 V2 (Laravel re-make)
V2 (Laravel re-make)
2022-03-06 02:02:12 +11:00

22 lines
423 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = getMatchFactory;
function getMatchFactory(map) {
return function getMatch(args) {
const match = args.reduce((list, arg, i) => {
return list.filter(keyword => keyword[1][i] === arg);
}, map);
if (match.length) {
return match[0][0];
}
return false;
};
}
module.exports = exports.default;