signoz/frontend/src/utils/checkStringEndsWithSpace.ts

5 lines
123 B
TypeScript
Raw Normal View History

export const checkStringEndsWithSpace = (str: string): boolean => {
const endSpace = / $/;
return endSpace.test(str);
};