import { Term } from "./Term.js"; export class Modifier extends Term { separator = "="; constructor(key) { super(key); } }