mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
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:
11
src/pages/tools/string/repeat/initialValues.ts
Normal file
11
src/pages/tools/string/repeat/initialValues.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
export type InitialValuesType = {
|
||||
textToRepeat: string;
|
||||
repeatAmount: string;
|
||||
delimiter: string;
|
||||
};
|
||||
|
||||
export const initialValues: InitialValuesType = {
|
||||
textToRepeat: '',
|
||||
repeatAmount: '5',
|
||||
delimiter: ''
|
||||
};
|
||||
Reference in New Issue
Block a user