blob: d1c060dbb26379196c241283f84a7d427fc3a1b2 [file] [log] [blame]
Leo Repp58b9f112021-11-22 11:57:47 +01001'use strict';
2
3module.exports = function(pattern) {
4 if (typeof pattern !== 'string') {
5 throw new TypeError('expected a string');
6 }
7
8 var glob = { negated: false, pattern: pattern, original: pattern };
9 if (pattern.charAt(0) === '!' && pattern.charAt(1) !== '(') {
10 glob.negated = true;
11 glob.pattern = pattern.slice(1);
12 }
13
14 return glob;
15};