Files
flights_web_raw/ClientApp/node_modules/is-wsl/index.js
T
gnezim 0a5ab058a6 Initial commit: Aeroflot Flights Web - Angular 12 baseline
- Angular 12 application with PrimeNG components
- 5 existing Cypress e2e test suites
- SCSS styling with BEM naming convention
- i18n support (10 languages)
- Leaflet map integration
- Complete component hierarchy and routing structure

This baseline will be used for Angular → React migration.
2026-04-05 18:47:57 +03:00

37 lines
762 B
JavaScript

import process from 'node:process';
import os from 'node:os';
import fs from 'node:fs';
import isInsideContainer from 'is-inside-container';
const isWsl = () => {
if (process.platform !== 'linux') {
return false;
}
if (os.release().toLowerCase().includes('microsoft')) {
if (isInsideContainer()) {
return false;
}
return true;
}
try {
if (fs.readFileSync('/proc/version', 'utf8').toLowerCase().includes('microsoft')) {
return !isInsideContainer();
}
} catch {}
// Fallback for custom kernels: check WSL-specific paths.
if (
fs.existsSync('/proc/sys/fs/binfmt_misc/WSLInterop')
|| fs.existsSync('/run/WSL')
) {
return !isInsideContainer();
}
return false;
};
export default process.env.__IS_WSL_TEST__ ? isWsl : isWsl();