feat(trim): add trim start

This commit is contained in:
Nan72 2025-02-14 12:41:42 +07:00
parent 8c0826fecb
commit dfdf760823
No known key found for this signature in database
4 changed files with 19 additions and 1 deletions

View File

@ -85,4 +85,5 @@ npx kksh@latest verify --publish # Verify some basic settings before publishing
See [Documentation](https://docs.kunkun.sh/guides/extensions/publish/design/) for more details on how to publish your extension. You will need to publish your extension package to npm or jsr first with GitHub actioin, then register it on Kunkun's website.
# TODO
[ ] padding
[ ] padding
[ ] Truncate

View File

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

View File

@ -63,6 +63,11 @@
"name": "Trim the end of clipboard text",
"main": "dist/trim-end.js",
"cmds": []
},
{
"name": "Trim the start of clipboard text",
"main": "dist/trim-start.js",
"cmds": []
}
]
},

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

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