mirror of
https://github.com/NaN72dev/kunkun-ext-string-utils.git
synced 2025-04-04 10:16:44 +00:00
feat(trim): add trim
This commit is contained in:
parent
d9668e39fb
commit
7d2926a7ec
1
build.ts
1
build.ts
@ -11,6 +11,7 @@ const entrypoints = [
|
|||||||
"./src/snake-case.ts",
|
"./src/snake-case.ts",
|
||||||
"./src/start-case.ts",
|
"./src/start-case.ts",
|
||||||
"./src/to-upper.ts",
|
"./src/to-upper.ts",
|
||||||
|
"./src/trim.ts",
|
||||||
];
|
];
|
||||||
|
|
||||||
async function build() {
|
async function build() {
|
||||||
|
@ -53,6 +53,11 @@
|
|||||||
"name": "Convert clipboard text to UPPER CASE",
|
"name": "Convert clipboard text to UPPER CASE",
|
||||||
"main": "dist/to-upper.js",
|
"main": "dist/to-upper.js",
|
||||||
"cmds": []
|
"cmds": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Trim clipboard text",
|
||||||
|
"main": "dist/trim.js",
|
||||||
|
"cmds": []
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
11
src/trim.ts
Normal file
11
src/trim.ts
Normal file
@ -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());
|
Loading…
x
Reference in New Issue
Block a user