ts-budgie
Version:
Converts TypeScript code to Budgie.
24 lines (22 loc) • 1.05 kB
text/typescript
import * as ts from "typescript";
export const operators = {
[]: "and",
[]: "decrease by",
[]: "divide",
[]: "divide by",
[]: "equals",
[]: "equal to",
[]: "greater than",
[]: "greater than or equal to",
[]: "increase by",
[]: "less than",
[]: "less than or equal to",
[]: "minus",
[]: "mod",
[]: "multiply by",
[]: "not",
[]: "not equal to",
[]: "or",
[]: "plus",
[]: "times",
};