I have used regex before but I'm no specialist. I've tried using stuff like /[^.]+b but I get too many results. I'm making request to another port on localhost (dev env) and since I'm using Angular 2 I'm fetching .js and .html files over XHR as well as normal REST calls.
I wan't to filter to only see REST XHR calls (ones without .js or .html extension). What would be the regex expression for this? As I've said, I've tried using /[^.]+b but it doesn't filter the ones ending with ".js".
