aboutsummaryrefslogtreecommitdiff
path: root/core/time/timezone/tz_js.odin
blob: d63e40033a135b535f1b2b34ba4fe489d66c6f6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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
}