canBeChoseong
인자로 받은 문자가 초성으로 위치할 수 있는 문자인지 검사합니다.
function canBeChoseong(character: string): boolean;
Examples
canBeChoseong('ㄱ'); // true
canBeChoseong('ㅃ'); // true
canBeChoseong('ㄱㅅ'); // false
canBeChoseong('ㅏ'); // false
canBeChoseong('가'); // false