convert the timestamp in a format yyyy/mm/dd hh:mm:ss with GMT as default
npm i convert-time-gmt --saveOn the main file:
constgmtConversion=require('convert-time-gmt')gmtConversion()// 2021/22/11 12:00:00gmtConversion(newDate())// 2021/22/11 12:00:00gmtConversion(newDate(),'GMT-05:00')// 2021/22/11 07:00:00