appium-webdriveragent
Version:
Package bundling WebDriverAgent
11 lines (9 loc) • 334 B
text/typescript
import {PLATFORM_NAME_TVOS} from '../constants';
/**
* Return true if the platformName is tvOS
* @param platformName The name of the platform
* @returns Return true if the platformName is tvOS
*/
export function isTvOS(platformName: string): boolean {
return platformName?.toLowerCase() === PLATFORM_NAME_TVOS.toLowerCase();
}