feat(upper): add upper case

This commit is contained in:
Nan72 2025-02-14 12:37:38 +07:00
parent 9faec05ab3
commit d9668e39fb
No known key found for this signature in database
3 changed files with 17 additions and 0 deletions

View File

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

View File

@ -48,6 +48,11 @@
"name": "Convert clipboard text to Start Case",
"main": "dist/start-case.js",
"cmds": []
},
{
"name": "Convert clipboard text to UPPER CASE",
"main": "dist/to-upper.js",
"cmds": []
}
]
},

11
src/to-upper.ts Normal file
View File

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