aboutsummaryrefslogtreecommitdiffstats
path: root/vanilla/node_modules/picomatch/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'vanilla/node_modules/picomatch/index.js')
-rw-r--r--vanilla/node_modules/picomatch/index.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/vanilla/node_modules/picomatch/index.js b/vanilla/node_modules/picomatch/index.js
deleted file mode 100644
index a753b1d..0000000
--- a/vanilla/node_modules/picomatch/index.js
+++ /dev/null
@@ -1,17 +0,0 @@
-'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;