You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			16 lines
		
	
	
		
			424 B
		
	
	
	
		
			TypeScript
		
	
			
		
		
	
	
			16 lines
		
	
	
		
			424 B
		
	
	
	
		
			TypeScript
		
	
import _ from 'lodash';
 | 
						|
import os from 'os';
 | 
						|
import semver from 'semver';
 | 
						|
 | 
						|
export const isMacOS = () => process.platform === 'darwin';
 | 
						|
export const isLinux = () => process.platform === 'linux';
 | 
						|
export const isWindows = (minVersion?: string) => {
 | 
						|
  const osRelease = os.release();
 | 
						|
 | 
						|
  if (process.platform !== 'win32') {
 | 
						|
    return false;
 | 
						|
  }
 | 
						|
 | 
						|
  return _.isUndefined(minVersion) ? true : semver.gte(osRelease, minVersion);
 | 
						|
};
 |