mirror of
https://github.com/lemeow125/StudE-Frontend.git
synced 2025-09-18 05:29:27 +08:00
3 lines
113 B
TypeScript
3 lines
113 B
TypeScript
export default function isStringEmpty(str: string) {
|
|
return str === "" || str === null || str === undefined;
|
|
}
|