From d9668e39fbe35c95ae858a319239d6eeaa3d5505 Mon Sep 17 00:00:00 2001 From: Nan72 Date: Fri, 14 Feb 2025 12:37:38 +0700 Subject: [PATCH] feat(upper): add upper case --- build.ts | 1 + package.json | 5 +++++ src/to-upper.ts | 11 +++++++++++ 3 files changed, 17 insertions(+) create mode 100644 src/to-upper.ts diff --git a/build.ts b/build.ts index 240734b..02652c6 100644 --- a/build.ts +++ b/build.ts @@ -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() { diff --git a/package.json b/package.json index 919e308..e4622ae 100644 --- a/package.json +++ b/package.json @@ -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": [] } ] }, diff --git a/src/to-upper.ts b/src/to-upper.ts new file mode 100644 index 0000000..44f81f8 --- /dev/null +++ b/src/to-upper.ts @@ -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()); \ No newline at end of file