diff --git a/build.ts b/build.ts index 02652c6..0439ad0 100644 --- a/build.ts +++ b/build.ts @@ -11,6 +11,7 @@ const entrypoints = [ "./src/snake-case.ts", "./src/start-case.ts", "./src/to-upper.ts", + "./src/trim.ts", ]; async function build() { diff --git a/package.json b/package.json index e4622ae..fb0a929 100644 --- a/package.json +++ b/package.json @@ -53,6 +53,11 @@ "name": "Convert clipboard text to UPPER CASE", "main": "dist/to-upper.js", "cmds": [] + }, + { + "name": "Trim clipboard text", + "main": "dist/trim.js", + "cmds": [] } ] }, diff --git a/src/trim.ts b/src/trim.ts new file mode 100644 index 0000000..d1291fa --- /dev/null +++ b/src/trim.ts @@ -0,0 +1,11 @@ +import { expose } from "@kksh/api/headless"; +import trim from "lodash/trim"; +import { BaseExt } from "./base"; + +class TrimExt extends BaseExt { + constructor() { + super(trim); + } +} + +expose(new TrimExt()); \ No newline at end of file