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.
		
		
		
		
		
			
		
			
				
					
					
						
							31 lines
						
					
					
						
							1.4 KiB
						
					
					
				
			
		
		
	
	
							31 lines
						
					
					
						
							1.4 KiB
						
					
					
				"use strict"; | 
						|
var __assign = (this && this.__assign) || function () { | 
						|
    __assign = Object.assign || function(t) { | 
						|
        for (var s, i = 1, n = arguments.length; i < n; i++) { | 
						|
            s = arguments[i]; | 
						|
            for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) | 
						|
                t[p] = s[p]; | 
						|
        } | 
						|
        return t; | 
						|
    }; | 
						|
    return __assign.apply(this, arguments); | 
						|
}; | 
						|
Object.defineProperty(exports, "__esModule", { value: true }); | 
						|
function prepare(options) { | 
						|
    var opts = __assign({ cwd: process.cwd(), deep: true, ignore: [], dot: false, stats: false, onlyFiles: true, onlyDirectories: false, followSymlinkedDirectories: true, unique: true, markDirectories: false, absolute: false, nobrace: false, brace: true, noglobstar: false, globstar: true, noext: false, extension: true, nocase: false, case: true, matchBase: false, transform: null }, options); | 
						|
    if (opts.onlyDirectories) { | 
						|
        opts.onlyFiles = false; | 
						|
    } | 
						|
    opts.brace = !opts.nobrace; | 
						|
    opts.globstar = !opts.noglobstar; | 
						|
    opts.extension = !opts.noext; | 
						|
    opts.case = !opts.nocase; | 
						|
    if (options) { | 
						|
        opts.brace = ('brace' in options ? options.brace : opts.brace); | 
						|
        opts.globstar = ('globstar' in options ? options.globstar : opts.globstar); | 
						|
        opts.extension = ('extension' in options ? options.extension : opts.extension); | 
						|
        opts.case = ('case' in options ? options.case : opts.case); | 
						|
    } | 
						|
    return opts; | 
						|
} | 
						|
exports.prepare = prepare;
 | 
						|
 |