mirror of
https://github.com/twentyhq/twenty
synced 2026-04-21 13:37:22 +00:00
6 lines
160 B
TypeScript
6 lines
160 B
TypeScript
|
|
import { isDefined } from 'twenty-shared/utils';
|
||
|
|
|
||
|
|
export const isStepValue = (value: string): boolean => {
|
||
|
|
return isDefined(value) && value.includes('/');
|
||
|
|
};
|