mirror of
https://github.com/NaN72dev/kunkun-ext-string-utils.git
synced 2025-04-04 10:16:44 +00:00
18 lines
467 B
TypeScript
18 lines
467 B
TypeScript
import { clipboard, expose, HeadlessCommand, toast } from "@kksh/api/headless"
|
|
import camelCase from "lodash/camelcase"
|
|
|
|
class CamelCaseExt extends HeadlessCommand {
|
|
async load() {
|
|
if (!await clipboard.hasText()) return;
|
|
|
|
const clipboardText = await clipboard.readText();
|
|
const convertedText = camelCase(clipboardText);
|
|
|
|
await clipboard.writeText(convertedText);
|
|
await toast.success(`Copied: "${convertedText}"`);
|
|
return
|
|
}
|
|
}
|
|
|
|
expose(new CamelCaseExt())
|