UNPKG

@yext/search-ui-react

Version:

A library of React Components for powering Yext Search integrations

11 lines 249 B
export function processTranslation(args: { phrase: string, pluralForm?: string, count?: number }): string { if (args.count != null && args.pluralForm && args.count !== 1) { return args.pluralForm; } else { return args.phrase; } }