From d7d5f81d5794bc22d19dc32cb870f845258ed8c4 Mon Sep 17 00:00:00 2001 From: Chesterkxng Date: Tue, 27 May 2025 17:05:46 +0200 Subject: [PATCH] feat: text-statistic (ltool added to string tools) --- src/pages/tools/string/index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/pages/tools/string/index.ts b/src/pages/tools/string/index.ts index b2aa502..7f5ba3a 100644 --- a/src/pages/tools/string/index.ts +++ b/src/pages/tools/string/index.ts @@ -14,6 +14,7 @@ import { tool as stringJoin } from './join/meta'; import { tool as stringReplace } from './text-replacer/meta'; import { tool as stringRepeat } from './repeat/meta'; import { tool as stringTruncate } from './truncate/meta'; +import { tool as stringStatistic } from './statistic/meta'; export const stringTools = [ stringSplit, @@ -31,5 +32,6 @@ export const stringTools = [ stringPalindrome, stringQuote, stringRotate, - stringRot13 + stringRot13, + stringStatistic ];