You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tailchat/web/plugins/com.msgbyte.miaolang/src/trans.ts

14 lines
269 B
TypeScript

import Miao from 'miao-lang';
export function encode(human: string): string {
return Miao.encode(human);
}
export function decode(miao: string): string {
return Miao.decode(miao);
}
export function isMiao(input: string): boolean {
return Miao.isMiao(input);
}