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