- 37개 파일 IP → zioinfo.co.kr 치환 (소스/매뉴얼/설정/하네스) - Manager DrConsole/NetworkConsole/CsapConsole 빌드 + /var/www/manager/ 배포 - 테스트: Manager HTTP 200, ITSM 신규 API 7개 전체 200 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
28 lines
801 B
JavaScript
28 lines
801 B
JavaScript
'use strict';
|
|
|
|
const os = require('os');
|
|
const pico = require('./lib/picomatch');
|
|
|
|
const isWindows = os.platform() === 'win32';
|
|
|
|
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: isWindows };
|
|
}
|
|
return pico(glob, options, returnState);
|
|
}
|
|
|
|
module.exports = picomatch;
|
|
// public api
|
|
module.exports.test = pico.test;
|
|
module.exports.matchBase = pico.matchBase;
|
|
module.exports.isMatch = pico.isMatch;
|
|
module.exports.parse = pico.parse;
|
|
module.exports.scan = pico.scan;
|
|
module.exports.compileRe = pico.compileRe;
|
|
module.exports.toRegex = pico.toRegex;
|
|
// for tests
|
|
module.exports.makeRe = pico.makeRe;
|