mirror of
https://github.com/NaN72dev/kunkun-ext-string-utils.git
synced 2025-04-04 10:16:44 +00:00
feat(camel): ref for easier tree shaking
This commit is contained in:
parent
8463818c16
commit
974ac54233
@ -1,12 +1,12 @@
|
|||||||
import { clipboard, expose, HeadlessCommand, toast } from "@kksh/api/headless"
|
import { clipboard, expose, HeadlessCommand, toast } from "@kksh/api/headless"
|
||||||
import _ from "lodash"
|
import camelCase from "lodash/camelcase"
|
||||||
|
|
||||||
class CamelCaseExt extends HeadlessCommand {
|
class CamelCaseExt extends HeadlessCommand {
|
||||||
async load() {
|
async load() {
|
||||||
if (!await clipboard.hasText()) return;
|
if (!await clipboard.hasText()) return;
|
||||||
|
|
||||||
const clipboardText = await clipboard.readText();
|
const clipboardText = await clipboard.readText();
|
||||||
const convertedText = _.camelCase(clipboardText);
|
const convertedText = camelCase(clipboardText);
|
||||||
|
|
||||||
await clipboard.writeText(convertedText);
|
await clipboard.writeText(convertedText);
|
||||||
await toast.success(`Copied: "${convertedText}"`);
|
await toast.success(`Copied: "${convertedText}"`);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user