I have an application that parses information from RSS feeds which specify that dates should be specified in RFC-822 format - for which Date.parse works fine. In the main, people put in conformant timestamps. However, I've come across a situation where someone is giving the date and time as (e.g.) "Sat, 1 Dec 2018 00:00:00 MSK" (where as far as I can tell MSK is Moscow time zone).
Is there any way of programatically converting such a string to something I can use with Date.parse (clearly for MSK I could hardcode to + (or -) the offset of Moscow but I'd like to be a little more flexible/reliable than that)
For various reasons I'd prefer to avoid having to include another library to do this, so answers involving standard javascript would be appreciated