mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
9 lines
441 B
TypeScript
9 lines
441 B
TypeScript
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';
|
|
|
|
export const stringTools = [stringSplit, stringJoin, stringToMorse];
|