export function isLCFunctionCall(obj: unknown): obj is ILCFunctionCall {
    const otherLCFunctionCall = obj as ILCFunctionCall;

    return (
        typeof otherLCFunctionCall !== 'undefined' &&