/home/techb158/balavpn.abdallabala.com/node_modules/tinyglobby/node_modules/picomatch
NameSizeModeActions
lib/-0777rm
index.js4790666editdlrm
LICENSE10910666editdlrm
package.json19150666editdlrm
posix.js600666editdlrm
README.md283190666editdlrm
Edit: /home/techb158/balavpn.abdallabala.com/node_modules/tinyglobby/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;