mirror of
https://github.com/NaN72dev/kunkun-ext-string-utils.git
synced 2025-04-04 10:16:44 +00:00
15 lines
322 B
TypeScript
15 lines
322 B
TypeScript
import {expose} from "@kksh/api/headless";
|
|
import {BaseExt} from "./base";
|
|
|
|
class RandomCaseExt extends BaseExt {
|
|
constructor() {
|
|
super(string => {
|
|
return string.split("").map(char => {
|
|
return Math.random() > 0.5 ? char.toUpperCase() : char.toLowerCase();
|
|
}).join("");
|
|
});
|
|
}
|
|
}
|
|
|
|
expose(new RandomCaseExt())
|