I'm trying to match every >
and >>
not surrounded by single or double qoutes.
var a = 'hello > you'; // true
var b = 'hello >> you'; // true
var c = '"hello > you"'; // false
var d = '"hello > you" >> you'; // true
var e = "'hello' > you"; // true
var f = "'hello > you'"; // false
I have been working around for some time but have not come op with anything useful.