Fix locale

This commit is contained in:
CrazyMax
2020-10-25 15:11:45 +01:00
parent 82e48e1f2e
commit 7df590fa0d
3 changed files with 5 additions and 5 deletions

2
dist/index.js generated vendored
View File

@ -259,7 +259,7 @@ class Meta {
const currentDate = this.date;
return {
date: function (format) {
return moment(currentDate).format(format);
return moment(currentDate).utc().format(format);
}
};
}