mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-12 02:52:40 +05:30
- Changed the replaceText method to take all options as arguments. - Removed compute from SimpleRadio component. - Moved InitialValuesType type and initialValues object to a separate file to avoid Fast Refresh error. - Used ToolContent and added usage examples.
25 lines
975 B
TypeScript
25 lines
975 B
TypeScript
import { tool as stringRemoveDuplicateLines } from './remove-duplicate-lines/meta';
|
|
import { tool as stringReverse } from './reverse/meta';
|
|
import { tool as stringRandomizeCase } from './randomize-case/meta';
|
|
import { tool as stringUppercase } from './uppercase/meta';
|
|
import { tool as stringExtractSubstring } from './extract-substring/meta';
|
|
import { tool as stringCreatePalindrome } from './create-palindrome/meta';
|
|
import { tool as stringPalindrome } from './palindrome/meta';
|
|
import { tool as stringToMorse } from './to-morse/meta';
|
|
import { tool as stringSplit } from './split/meta';
|
|
import { tool as stringJoin } from './join/meta';
|
|
import { tool as stringReplace } from './text-replacer/meta';
|
|
|
|
export const stringTools = [
|
|
stringSplit,
|
|
stringJoin,
|
|
stringRemoveDuplicateLines,
|
|
stringToMorse,
|
|
stringReplace
|
|
// stringReverse,
|
|
// stringRandomizeCase,
|
|
// stringUppercase,
|
|
// stringExtractSubstring,
|
|
// stringCreatePalindrome,
|
|
// stringPalindrome
|
|
];
|