Sha256: 02ae26406508e28f9ba0865be16cf77f0b33de6c4d4d49c212c4176df1d5625a
Contents?: true
Size: 479 Bytes
Versions: 29
Compression:
Stored size: 479 Bytes
Contents
'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;
Version data entries
29 entries across 29 versions & 2 rubygems