Created
May 10, 2018 12:46
-
-
Save meijeru/9371b91f8cf7f9a09e760db1de41dcae 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
to-local-time: func [ | |
"adjusts a time given as UTC, or a date containing a time, to the local timezone" | |
d [time! date!] | |
][ | |
either time? d | |
[ | |
d + now/zone | |
][ | |
if d/timezone [ | |
d/timezone: now/zone | |
] | |
d | |
] | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment