mirror of
https://github.com/NaN72dev/kunkun-ext-string-utils.git
synced 2025-04-11 17:29:45 +00:00
11 lines
242 B
TypeScript
11 lines
242 B
TypeScript
import { expose } from "@kksh/api/headless";
|
|
import startCase from "lodash/startCase";
|
|
import { BaseExt } from "./base";
|
|
|
|
class StartCaseExt extends BaseExt {
|
|
constructor() {
|
|
super(startCase);
|
|
}
|
|
}
|
|
|
|
expose(new StartCaseExt());
|