node_modules.is-negated-glob.index.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of libjoynr-js Show documentation
Show all versions of libjoynr-js Show documentation
JOYnr JavaScript libjoynr-js
'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