mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-20 08:56:29 +00:00
5 lines
123 B
TypeScript
5 lines
123 B
TypeScript
|
|
export const checkStringEndsWithSpace = (str: string): boolean => {
|
||
|
|
const endSpace = / $/;
|
||
|
|
return endSpace.test(str);
|
||
|
|
};
|