Backend API for a project I am working on only accepts the UNIX time.
The server is set in GMT so to send the UNIX time in GMT I am having to manipulate the data according to the timezone to get the results I need.
Is there a better way than below in momentJS to get the current UNIX time in GMT?
var timeOffset = moment().utcOffset();
if (timeOffset >= 0) {
this.sinceNow = moment().subtract(timeOffset, 'minutes').unix();
}
else {
this.sinceNow = moment().add(timeOffset * -1, 'minutes').unix();
}
According to MomentJS documentation I believe it will be: