in src/index.ts [491:496]
function head(ss?: string[]): string | undefined { if (ss && ss.length > 0) { return ss[0]; } return undefined; }