mirror of
https://github.com/NaN72dev/kunkun-ext-string-utils.git
synced 2025-04-03 17:56:45 +00:00
feat(trim): add trim start
This commit is contained in:
parent
8c0826fecb
commit
dfdf760823
@ -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
|
1
build.ts
1
build.ts
@ -13,6 +13,7 @@ const entrypoints = [
|
||||
"./src/to-upper.ts",
|
||||
"./src/trim.ts",
|
||||
"./src/trim-end.ts",
|
||||
"./src/trim-start.ts",
|
||||
];
|
||||
|
||||
async function build() {
|
||||
|
@ -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
11
src/trim-start.ts
Normal 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());
|
Loading…
x
Reference in New Issue
Block a user