bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/polling/polling-graphql/service.ts
2024-01-22 17:12:20 -03:00

6 lines
173 B
TypeScript

const MAX_CHAR_LENGTH = 5;
export const shouldStackOptions = (keys: Array<string>) => keys.some((k) => k.length > MAX_CHAR_LENGTH);
export default { shouldStackOptions };