mirror of
https://github.com/odin-lang/Odin.git
synced 2026-01-10 06:53:03 +00:00
13 lines
309 B
Odin
13 lines
309 B
Odin
#+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
|
|
} |