All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.is-negated-glob.index.js Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
'use strict';

module.exports = function(pattern) {
  if (typeof pattern !== 'string') {
    throw new TypeError('expected a string');
  }

  var glob = { negated: false, pattern: pattern, original: pattern };
  if (pattern.charAt(0) === '!' && pattern.charAt(1) !== '(') {
    glob.negated = true;
    glob.pattern = pattern.slice(1);
  }

  return glob;
};




© 2015 - 2025 Weber Informatics LLC | Privacy Policy