Parse an the timezone component of a ISO8601 string to get a timezone name
npm install moment-timezone-parseParse the timezone component of a ISO8601 date string and return an approparite IANA timezone name.

``bash`
npm install moment-timezone-parse --save
`javascript`
const parse = require('moment-timezone-parse');
console.log(parse('2017-11-08T23:16:00-0200').format());
// =>
// Etc/GMT+2
The timezone designator (i.e. -0200) is parsed from the string and a timezone name is derived from that stringEtc/GMT+2`).
(i.e.