aboutsummaryrefslogtreecommitdiff
path: root/src/app.ts
blob: 9919eb4a94535df3a0beb80b660a39056729f43d (plain) (blame)
1
2
3
4
5
6
const uwufy = (input: string): string => {
    input = input.replace(/(?:l|r)/g, 'w');
    input = input.replace(/(?:L|R)/g, 'W');
    return input;
}
export = uwufy;