How to use the minimatch.braceExpand.apply function in minimatch

To help you get started, we’ve selected a few minimatch examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github micromatch / braces / benchmark / code / minimatch.js View on Github external
module.exports = function(args) {
  return braceExpand.apply(null, Array.isArray(args) ? args : [args]);
};