mirror of
https://github.com/NaN72dev/kunkun-ext-string-utils.git
synced 2025-04-03 17:56:45 +00:00
10 lines
238 B
TypeScript
10 lines
238 B
TypeScript
import { expose } from "@kksh/api/headless";
|
|
import { BaseExt } from "./base";
|
|
|
|
class ReverseExt extends BaseExt {
|
|
constructor() {
|
|
super((text: string) => text.split('').reverse().join(''));
|
|
}
|
|
}
|
|
|
|
expose(new ReverseExt());
|