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