feat(camel): ref for easier tree shaking

This commit is contained in:
Nan72 2025-02-14 11:31:15 +07:00
parent 8463818c16
commit 974ac54233
No known key found for this signature in database

View File

@ -1,12 +1,12 @@
import { clipboard, expose, HeadlessCommand, toast } from "@kksh/api/headless"
import _ from "lodash"
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);
const convertedText = camelCase(clipboardText);
await clipboard.writeText(convertedText);
await toast.success(`Copied: "${convertedText}"`);