/snap/node/11782/lib/node_modules/npm/node_modules/picomatch
NameSizeModeActions
lib/-0755rm
index.js4790644editdlrm
LICENSE10910644editdlrm
package.json19530644editdlrm
posix.js600644editdlrm
Edit: /snap/node/11782/lib/node_modules/npm/node_modules/picomatch/index.js (479B)
'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;