# datetimezone **Repository Path**: mirrors_Jam3/datetimezone ## Basic Information - **Project Name**: datetimezone - **Description**: Pass in a timezone offset in minutes and this function will return Date objects based on that Timezone - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-11-23 - **Last Updated**: 2026-03-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README #timezonedate Pass in an offset in minutes and this module will return a function which you can call to get a Date which is the current Date/Time in that timezone. **Example** ```javascript var timezoneDate = require( 'timezonedate' ), gmt = timezoneDate( 0 ), eastern = timezoneDate( 300 ); console.log( gmt() ); console.log( eastern() ); ```