tz_js.odin 309 B

12345678910111213
  1. #+build js
  2. #+private
  3. package timezone
  4. import "core:time/datetime"
  5. local_tz_name :: proc(allocator := context.allocator) -> (name: string, success: bool) {
  6. return
  7. }
  8. _region_load :: proc(_reg_str: string, allocator := context.allocator) -> (out_reg: ^datetime.TZ_Region, success: bool) {
  9. return nil, true
  10. }