Is this string a valid timezone? Validate timezones before using them in node, dates, or new objects.
const isTimezone = require('is-timezone');
or
import isTimezone from 'is-timezone';
const isTimezone = require('is-timezone');
if (isTimezone('Australia/Melbourne')) {
// Do something
};
A production example of using this transport is available here: photoprism-helper config.ts
Here is the relevant code, omitting anything not relevant to the transport:
TBA