aboutsummaryrefslogtreecommitdiff
path: root/core/time
diff options
context:
space:
mode:
authorColin Davidson <colrdavidson@gmail.com>2025-06-08 16:17:32 -0700
committerColin Davidson <colrdavidson@gmail.com>2025-06-08 16:17:32 -0700
commit04481e0fd289f854e35a84da909184140940bbf7 (patch)
tree97224c25709866edbf16a486fdbd30a4d736701a /core/time
parentb1ed22d84f2aae617c90c60701e9f25345cab980 (diff)
parent7813e9fb378753bf110f0ad4b5cc85e7f16336d4 (diff)
Merge branch 'master' into macharena
Diffstat (limited to 'core/time')
-rw-r--r--core/time/timezone/tz_js.odin13
1 files changed, 13 insertions, 0 deletions
diff --git a/core/time/timezone/tz_js.odin b/core/time/timezone/tz_js.odin
new file mode 100644
index 000000000..d63e40033
--- /dev/null
+++ b/core/time/timezone/tz_js.odin
@@ -0,0 +1,13 @@
+#+build js
+#+private
+package timezone
+
+import "core:time/datetime"
+
+local_tz_name :: proc(allocator := context.allocator) -> (name: string, success: bool) {
+ return
+}
+
+_region_load :: proc(_reg_str: string, allocator := context.allocator) -> (out_reg: ^datetime.TZ_Region, success: bool) {
+ return nil, true
+} \ No newline at end of file