Created
April 18, 2022 08:08
-
-
Save aquarla/f700ee812abf48fd8571d9bd16118df3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * PrismaではDatetime型を取り出すときのタイムゾーンが指定できない(固定でUTC)になってしまう | |
| * ため、強制的に9時間マイナスしてJSTに補正する | |
| */ | |
| export default function convertTimezone(obj) { | |
| return { | |
| ...obj, | |
| createdAt: new Date(Date.parse(obj.createdAt) - 1000 * 60 * 60 * 9), | |
| updatedAt: new Date(Date.parse(obj.updatedAt) - 1000 * 60 * 60 * 9), | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment