You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
session-desktop/ts/hooks/useModuloWithTripleDots.ts

15 lines
364 B
TypeScript

import { useModulo } from './useModulo';
export function useModuloWithTripleDots(
localizedString: string,
loopBackAt: number,
delay: number
) {
const modulo = useModulo(loopBackAt, delay);
if (localizedString.endsWith('...')) {
return localizedString.slice(0, localizedString.length - (loopBackAt - modulo.count));
}
return localizedString;
}