Node available that combines Switch and Change?

I’m working on my streams in node-red and part of my stream has a simple ON/OFF switch but part of it has to split off to tell a timer to stop.
I’m using StopTimer which is working well for restarting when there is movement and can be stopped by sending it STOP.
So, my current stream has motion to Switch and then over to a Change to change ON to STOP.
It’s looking a bit convoluted to add to every motion stream and would be great if there were a Switch that could spit out a changed PayLoad of STOP that I could just feed right into StopTimer.

Found my solution.
I used a Function node with the following:

if (msg.payload == "ON" ) {
    msg.payload = "STOP"
return [ msg, msg ];

} else if ( msg.payload == "OFF" ) {

return [ null, msg ];

} 

The input is linked to my motion sensor which only sends ON or OFF.
I linked the light ON to the top output, receiving STOP wouldn’t matter.
The bottom output goes to StopTimer and when it receives a STOP will halt any timer running. When it receives an OFF it resets/starts the timer which then turns off the light.