mirror of
https://github.com/NaN72dev/kunkun-ext-string-utils.git
synced 2025-04-03 17:56:45 +00:00
feat(snake): add snake case
This commit is contained in:
parent
ebc73768ef
commit
e920da7e25
@ -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
|
1
build.ts
1
build.ts
@ -8,6 +8,7 @@ const entrypoints = [
|
||||
"./src/capitalize.ts",
|
||||
"./src/kebab.ts",
|
||||
"./src/lower-case.ts",
|
||||
"./src/snake-case.ts",
|
||||
];
|
||||
|
||||
async function build() {
|
||||
|
@ -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
11
src/snake-case.ts
Normal 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());
|
Loading…
x
Reference in New Issue
Block a user