Is there a way to generate a date with a custom timezone such as UTC+2, UTC+3, UTC-12, etc without using string formats like 'America/New York' in JavaScript using moment.js? I have access to a list of timezones from the server in the format [UTC+2, UTC+3, UTC-12, etc] and I need to be able to create dates with a selected timezone. I attempted to utilize moment.js, but it only accepts string formats. Any suggestions for how to achieve this will be greatly appreciated. Thank you in advance!