feat(trim): add trim end

This commit is contained in:
Nan72 2025-02-14 12:40:00 +07:00
parent 7d2926a7ec
commit 8c0826fecb
No known key found for this signature in database
3 changed files with 18 additions and 1 deletions

View File

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

View File

@ -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": []
}
]
},

11
src/trim-end.ts Normal file
View File

@ -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());