@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) • 392 B
JavaScript
import { deepFreeze } from "../helpers/deep-freeze.js";
/** An array containing all perspectives. */
export const ALL_PERSPECTIVES =
/* @__PURE__ */ deepFreeze(["M", "G", "N", "A"]);
/** An object mapping from perspectives to their names. */
export const PERSPECTIVE_TO_NAME_MAP = /* @__PURE__ */ deepFreeze({
M: "Monadic",
G: "Agglomerative",
N: "Nomic",
A: "Abstract",
});