Filter to Display if Input is a Tiddler or Shadow

I have a complex set of filters stored in a tiddler caller mySelections, for example mySelection is like

[prefix[$:/boot/]] [prefix[$:/config/]] [prefix[$:/core/macros]] [prefix[$:/core/save/]] [prefix[$:/core/templates/]] [prefix[$:/info/]] [prefix[$:/language/]] [prefix[$:/languages/]] [prefix[$:/snippets/]] [prefix[$:/state/]] [prefix[$:/status/]] [prefix[$:/info/]] [prefix[$:/temp/]] 

Now I want to work on these and before that I want to make sure the input is a tiddler (even shadow tiddler, I use

<$list filter="[subfilter{mySelection}is[tiddler]] [subfilter{mySelection}is[shadow]]" >
do it...
</$list>

Is there a shorter solution I can check in one step if input is tiddler/shadow?

[subfilter{mySelection}has[title]]

Much appreciated Saq!
Works as expected.