@zsnout/ithkuil
Version:
A set of tools which can generate and parse romanized Ithkuil text and which can generate Ithkuil script from text and JSON data.
12 lines (11 loc) • 349 B
JavaScript
import { deepFreeze } from "../../helpers/deep-freeze.js";
/** An array containing all functions. */
export const ALL_FUNCTIONS = /* @__PURE__ */ deepFreeze([
"STA",
"DYN",
]);
/** An object mapping from functions to their names. */
export const FUNCTION_TO_NAME_MAP = /* @__PURE__ */ deepFreeze({
STA: "Static",
DYN: "Dynamic",
});