跳到主要内容

dsh-case

已验证

dsh-case · v0.1.0 · MIT

DSH plugin: case/naming conversion tool (case_convert).

安装

dsh plugin add dsh-case

dsh --profile default --dump-config 确认 layer 已生效 —— 参见安装指南

源码

发布到 npm 但没有公开仓库。安装前请检查包内容。

标签

作者

说明文档

dsh-case

DSH 插件:命名/大小写风格转换工具,注册一个 case_convert 工具。

纯 ESM、零依赖、无构建步骤。

安装

dsh plugin --profile <name> add file:./plugins/dsh-case
# 或发布后
dsh plugin --profile <name> add dsh-case

工具 case_convert

参数:

参数 类型 必填 说明
text string 待转换文本
target string(enum) 目标风格
source string(enum) 源风格,默认 auto 自动检测

返回值(规范 JSON 对象):

{ "input": "...", "target": "camelCase", "source": "snake_case", "output": "...", "words": ["..."] }

各 target 示例

hello_world(snake_case)为输入:

target 输出
camelCase helloWorld
PascalCase HelloWorld
snake_case hello_world
kebab-case hello-world
CONSTANT_CASE HELLO_WORLD
UPPER HELLO WORLD
lower hello world
Title Case Hello World

分词规则

  1. 按分隔符 -_、空白、. 切词。
  2. 在无分隔符片段内按大小写边界切词:
    • 小写 → 大写(helloWorldhello / World
    • 连续大写后接小写(HTTPApiHTTP / Api
    • 数字后接「大写 + 小写」(my2Factormy2 / Factor
  3. 数字粘合到相邻单词,不单独成词:version2version2;开头的 2FA 保持为一个整体不拆分。
  4. 空输入或纯符号输入原样返回,words 为空数组。

source 用于 auto 检测时的判定(分隔符 + 连续大写规则);分词算法对全部分隔符与大小写边界一视同仁,因此 source 主要作为结果中的标注,不影响转换正确性。