From 2509878d4276f15d8a329db5c9153220a662cf92 Mon Sep 17 00:00:00 2001 From: Chesterkxng Date: Tue, 8 Jul 2025 20:45:21 +0200 Subject: [PATCH] feat: text censor (added to string tool) --- 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 e7cecd4..e4979fc 100644 --- a/src/pages/tools/string/index.ts +++ b/src/pages/tools/string/index.ts @@ -16,6 +16,7 @@ import { tool as stringRepeat } from './repeat/meta'; import { tool as stringTruncate } from './truncate/meta'; import { tool as stringBase64 } from './base64/meta'; import { tool as stringStatistic } from './statistic/meta'; +import { tool as stringCensor } from './censor/meta'; export const stringTools = [ stringSplit, @@ -35,5 +36,6 @@ export const stringTools = [ stringRotate, stringRot13, stringBase64, - stringStatistic + stringStatistic, + stringCensor ];