mirror of
https://github.com/NaN72dev/kunkun-ext-string-utils.git
synced 2025-04-04 10:16:44 +00:00
12 lines
230 B
TypeScript
12 lines
230 B
TypeScript
import {expose} from "@kksh/api/headless";
|
|
import kebabCase from "lodash/kebabCase";
|
|
import {BaseExt} from "./base";
|
|
|
|
class KebabExt extends BaseExt {
|
|
constructor() {
|
|
super(kebabCase);
|
|
}
|
|
}
|
|
|
|
expose(new KebabExt());
|