export function isString(x: unknown) { return typeof x === 'string'; } export function lte(a: number, b: number) { return a <= b; }