feat(snake): add snake case

This commit is contained in:
Nan72 2025-02-14 12:34:38 +07:00
parent ebc73768ef
commit e920da7e25
No known key found for this signature in database
4 changed files with 20 additions and 0 deletions

View File

@ -83,3 +83,6 @@ npx kksh@latest verify --publish # Verify some basic settings before publishing
```
See [Documentation](https://docs.kunkun.sh/guides/extensions/publish/design/) for more details on how to publish your extension. You will need to publish your extension package to npm or jsr first with GitHub actioin, then register it on Kunkun's website.
# TODO
[ ] padding

View File

@ -8,6 +8,7 @@ const entrypoints = [
"./src/capitalize.ts",
"./src/kebab.ts",
"./src/lower-case.ts",
"./src/snake-case.ts",
];
async function build() {

View File

@ -38,6 +38,11 @@
"name": "Convert clipboard text to lower case",
"main": "dist/lower-case.js",
"cmds": []
},
{
"name": "Convert clipboard text to snake_case",
"main": "dist/snake-case.js",
"cmds": []
}
]
},

11
src/snake-case.ts Normal file
View File

@ -0,0 +1,11 @@
import { expose } from "@kksh/api/headless";
import snakeCase from "lodash/snakeCase";
import { BaseExt } from "./base";
class SnakeCaseExt extends BaseExt {
constructor() {
super(snakeCase);
}
}
expose(new SnakeCaseExt());