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.
17 lines
479 B
17 lines
479 B
'use strict'; |
|
|
|
const pico = require('./lib/picomatch'); |
|
const utils = require('./lib/utils'); |
|
|
|
function picomatch(glob, options, returnState = false) { |
|
// default to os.platform() |
|
if (options && (options.windows === null || options.windows === undefined)) { |
|
// don't mutate the original options object |
|
options = { ...options, windows: utils.isWindows() }; |
|
} |
|
|
|
return pico(glob, options, returnState); |
|
} |
|
|
|
Object.assign(picomatch, pico); |
|
module.exports = picomatch;
|
|
|