export function lexCompare (a: string, b: string): number {
  return a > b ? 1 : a < b ? -1 : 0
}
