You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
423 B

/*globals options: false */
/*jslint node: true */
"use strict";
var qlobber = require('..'),
common = require('./common');
var matcher_default = new qlobber.Qlobber();
common.add_bindings(matcher_default);
var matcher_dedup = new qlobber.QlobberDedup();
common.add_bindings(matcher_dedup);
module.exports = function ()
{
common.match(options.Matcher === qlobber.Qlobber ? matcher_default : matcher_dedup);
};