TenantAtlas/apps/platform/.pnpm-store/v10/files/75/63b0a1971db5c12ff7af6c1aca0073d3b2bc8cd13f6ac10a5ab0b9d674b0393dcfb931a6912159201ac84b6b1b93a92a59429ca672699dce541f8c0321c7b6
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

18 lines
479 B
Plaintext

'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;