@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) • 422 B
JavaScript
import { deepFreeze } from "../../helpers/deep-freeze.js";
/** An array containing all specifications. */
export const ALL_SPECIFICATIONS =
/* @__PURE__ */ deepFreeze(["BSC", "CTE", "CSV", "OBJ"]);
/** An object mapping from specifications to their names. */
export const SPECIFICATION_TO_NAME_MAP = /* @__PURE__ */ deepFreeze({
BSC: "Basic",
CTE: "Contential",
CSV: "Constitutive",
OBJ: "Objective",
});