UNPKG

oberknecht-utils

Version:
5 lines (4 loc) 132 B
export function isNaM(s: string | any): boolean | undefined { if (!(s ?? undefined)) return undefined; return /\W/gi.test(s); }