UNPKG

psn-api

Version:

A well-tested library that lets you get trophy, user, and game data from the PlayStation Network.

11 lines (8 loc) 288 B
import { faker } from "@faker-js/faker"; import type { TitlePlatform } from "../../models"; export const generateTitlePlatform = (givenTitlePlatform?: string) => { return ( givenTitlePlatform ?? faker.helpers.arrayElement<TitlePlatform>(["PS3", "PS4", "PS5", "Vita"]) ); };