UNPKG

@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.

16 lines (15 loc) 424 B
import { deepFreeze } from "../../helpers/deep-freeze.js"; /** An array containing all contexts. */ export const ALL_CONTEXTS = /* @__PURE__ */ deepFreeze([ "EXS", "FNC", "RPS", "AMG", ]); /** An object mapping contexts to their names. */ export const CONTEXT_TO_NAME_MAP = /* @__PURE__ */ deepFreeze({ EXS: "Existential", FNC: "Functional", RPS: "Representational", AMG: "Amalgamative", });