mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
11 lines
219 B
JavaScript
11 lines
219 B
JavaScript
'use strict';
|
|
|
|
if (process.env.SLS_GEO_LOCATION === 'cn') {
|
|
module.exports = true;
|
|
return;
|
|
}
|
|
|
|
module.exports = new Intl.DateTimeFormat('en', { timeZoneName: 'long' })
|
|
.format()
|
|
.includes('China Standard Time');
|