From 8c0826fecb8690c6a23b8488adabb084f96ac3b4 Mon Sep 17 00:00:00 2001 From: Nan72 Date: Fri, 14 Feb 2025 12:40:00 +0700 Subject: [PATCH] feat(trim): add trim end --- build.ts | 1 + package.json | 7 ++++++- src/trim-end.ts | 11 +++++++++++ 3 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 src/trim-end.ts diff --git a/build.ts b/build.ts index 0439ad0..03e18b0 100644 --- a/build.ts +++ b/build.ts @@ -12,6 +12,7 @@ const entrypoints = [ "./src/start-case.ts", "./src/to-upper.ts", "./src/trim.ts", + "./src/trim-end.ts", ]; async function build() { diff --git a/package.json b/package.json index fb0a929..5819629 100644 --- a/package.json +++ b/package.json @@ -55,9 +55,14 @@ "cmds": [] }, { - "name": "Trim clipboard text", + "name": "Trim the clipboard text", "main": "dist/trim.js", "cmds": [] + }, + { + "name": "Trim the end of clipboard text", + "main": "dist/trim-end.js", + "cmds": [] } ] }, diff --git a/src/trim-end.ts b/src/trim-end.ts new file mode 100644 index 0000000..dc2a815 --- /dev/null +++ b/src/trim-end.ts @@ -0,0 +1,11 @@ +import { expose } from "@kksh/api/headless"; +import trimEnd from "lodash/trimEnd"; +import { BaseExt } from "./base"; + +class TrimEndExt extends BaseExt { + constructor() { + super(trimEnd); + } +} + +expose(new TrimEndExt()); \ No newline at end of file