1import * as _ from 'lodash-es'23export const testPlayerPrefix = 'harnbot'45export const isTestGame = ({existingGame}) =>6 _.some(existingGame?.playerStates, ps => ps?.publicState?.playerAlias?.startsWith(testPlayerPrefix))7