feat: add text repeat tool

- Added text repeat tool to repeat input text multiple times with optional delimiter.
- Included functionality for custom repetition amounts and delimiters.
This commit is contained in:
EugSh
2025-03-07 15:26:04 +03:00
parent 6a14840e91
commit eb9e3cbdf9
6 changed files with 205 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
export type InitialValuesType = {
textToRepeat: string;
repeatAmount: string;
delimiter: string;
};
export const initialValues: InitialValuesType = {
textToRepeat: '',
repeatAmount: '5',
delimiter: ''
};