diff options
author | 2023-02-10 22:06:32 +0100 | |
---|---|---|
committer | 2023-02-10 22:06:32 +0100 | |
commit | 6fe4b5ac608370547ec8be14afca36b28536c824 (patch) | |
tree | 5a46fd5fc6eec5d54251b80f8a281a8ccb412f93 /src/tools/index.ts | |
parent | 1a3f0a135d572501cc6aec50f39e09205aa616ca (diff) | |
download | it-tools-6fe4b5ac608370547ec8be14afca36b28536c824.tar.gz it-tools-6fe4b5ac608370547ec8be14afca36b28536c824.tar.zst it-tools-6fe4b5ac608370547ec8be14afca36b28536c824.zip |
feat(new-tool): slugify string
Diffstat (limited to 'src/tools/index.ts')
-rw-r--r-- | src/tools/index.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tools/index.ts b/src/tools/index.ts index 2aa56f2..c7f0d98 100644 --- a/src/tools/index.ts +++ b/src/tools/index.ts @@ -1,6 +1,7 @@ import { tool as base64FileConverter } from './base64-file-converter'; import { tool as base64StringConverter } from './base64-string-converter'; import { tool as basicAuthGenerator } from './basic-auth-generator'; +import { tool as slugifyString } from './slugify-string'; import { tool as keycodeInfo } from './keycode-info'; import { tool as jsonMinify } from './json-minify'; import { tool as bcrypt } from './bcrypt'; @@ -69,6 +70,7 @@ export const toolsByCategory: ToolCategory[] = [ mimeTypes, jwtParser, keycodeInfo, + slugifyString, ], }, { |