export const SYMBOL = "symbol";

export const isSymbol = (val: unknown): val is Symbol => typeof val === SYMBOL;
