UNPKG

@brimdata/zealot

Version:

The Javascript Client for Zed Lakes

7 lines (5 loc) 184 B
import {Type} from "../types/types" import {isTypeAlias} from "./is-type-alias" export function isNamed(type: Type, name: string) { return isTypeAlias(type) && type.name === name }