jbilcke-hf's picture
jbilcke-hf HF Staff
initial commit πŸ—½πŸŽ¬
6c0a0fe
raw
history blame contribute delete
89 Bytes
export function isAllCaps(line: string): boolean {
return line === line.toUpperCase()
}