mirror of
https://github.com/NaN72dev/kunkun-ext-string-utils.git
synced 2025-04-03 17:56:45 +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 _ 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}"`);
|
||||
|
Loading…
x
Reference in New Issue
Block a user