feat(start): add start case

This commit is contained in:
Nan72 2025-02-14 12:36:00 +07:00
parent e920da7e25
commit 9faec05ab3
No known key found for this signature in database
3 changed files with 18 additions and 1 deletions

View File

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

View File

@ -25,7 +25,7 @@
"cmds": []
},
{
"name": "Convert clipboard text to Capitalize",
"name": "Convert clipboard text to Capitalize text",
"main": "dist/capitalize.js",
"cmds": []
},
@ -43,6 +43,11 @@
"name": "Convert clipboard text to snake_case",
"main": "dist/snake-case.js",
"cmds": []
},
{
"name": "Convert clipboard text to Start Case",
"main": "dist/start-case.js",
"cmds": []
}
]
},

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

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