blob: 45f569b9499540d8b799dd6f69bdde73bff70b7f [file] [log] [blame]
export function isString(input: string) {
if (typeof input === 'string') {
return true;
} else {
return false;
}
}