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